a {
    text-decoration: none !important;
}

ul li a {
    color: var(--blue-500);
}

input:focus, textarea:focus, select:focus {
    outline: none !important;
    box-shadow: none !important;
}

/***************************************************************
* TOP MENU
****************************************************************/
.topsection {
    width: 100% !important;
    padding: 0rem 3rem !important;
}

.venturelogo {
    margin-right: 5rem;
}

.menuitems {
    float: left !important;
}

/***************************************************************
* HOME PAGE
****************************************************************/
#home-top-container {
    background-image: url('../images/header-bg.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.border-bottom, .border-end {
    border-color: var(--gray-50) !important;
}

.platform-badge {
  width: 4.5rem;
  height: 4.5rem;
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}

.platform-badge-sm {
    border-radius: 5px;
    padding: 3px 10px;
    height: fit-content;
}

.java {
    background-color: var(--orange-50);
    color: var(--orange-500);
    border: 1px solid var(--orange-100);
}

.net {
    background-color: var(--purple-50);
    color: var(--purple-500);
    border: 1px solid var(--purple-100);
}

.py {
    background-color: var(--yellow-50);
    color: var(--yellow-500);
    border: 1px solid var(--yellow-100);
}

/***************************************************************
* PRODUCT PAGE
****************************************************************/
#product-top-container {
    background-image: url('/assets/images/product_top_bg.svg');
}

.w-md-50 {
    width: 50% !important;
}

.code-block {
    position: relative;
    margin: 2rem 0;
}

.code-block pre {
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    overflow-x: auto;
    font-size: 0.95rem;
    line-height: 1.6;
}

.code-block .copy-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.code-block-light pre {
    overflow-y: auto;
    font-size: 0.8rem;
    line-height: 1.6;
    height: 200px;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.code-block-light .copy-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

/*
* Product Container
*/
#product-container h3, #product-container h4 {
    color: var(--gray-800);
}

#product-container p {
    color: var(--gray-700);
}

#product-container ul {
    list-style: none;
    color: var(--gray-800);
    padding: 0;
}

#product-container li {
    line-height: 2em;
}

#product-container li::before {
    content: "✓";
    padding-right: 0.5em;
}

#product-changelog h4, #product-changelog h5, #product-changelog h6 {
    border-radius: 0.3em;
    font-size: 0.8em;
    padding: 5px 10px;
    width: fit-content;
}

#product-changelog h4 {
    background-color: var(--blue-50);
    color: var(--blue-500);
}

#product-changelog h5 {
    background-color: var(--green-50);
    color: var(--green-500);
}

#product-changelog h6 {
    background-color: var(--red-50);
    color: var(--red-500);
}

#right-sidebar {
    min-width: 300px;
}

/***
* Localization Modal
***/
#conholdate-localization>div {
    background-color: #ffffff;
    margin: 60px auto;
    padding: 20px;
    border-radius: 12px;
    padding-top: 0;
}

#conholdate-localization h4 {
    margin: 0;
}

#conholdate-localization .modal-body>li {
    margin: 10px 20px;
    padding: 10px;
}

#conholdate-localization .modal-body>li>a {
    color: #343a40;
    font-size: 14px;
    text-transform: capitalize;
}

#conholdate-localization .active {
    background: rgba(17, 118, 241, 0.12);
    border-radius: 100px;
}

#conholdate-localization ::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 2px;
    background-color: rgba(0, 0, 0, 0.1);
}

#conholdate-localization ::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #1176F1;
    box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}