body,
html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    overflow: hidden;
}

.split-screen {
    display: flex;
    height: 100vh;
    width: 100%;
    /* position: relative; */
}

.left,
.right {
    /* width: 40%; */
    overflow: hidden;
    flex: 1;
    transition: flex 0.8s ease;
}

.left img,
.right img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.split-screen.reveal-left .left {
    flex: 2;
}

.split-screen.reveal-left .right {
    flex: 0;
}

.split-screen.reveal-right .right {
    flex: 2;
}

.split-screen.reveal-right .left {
    flex: 0;
}

.center-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f08809;
    padding: 32px;
    border-radius: 10px;
    color: white;
    text-align: center;
    width: 48%;
}

@media screen and (max-width: 1400px) {
    .center-card {
        width: 670px;
    }
}

.center-card h1,
.center-card h2 {
    margin: 0;
    text-align: left;
    font-weight: 600;
}

.center-card select,
.center-card button {
    margin: 10px 5px;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.center-card .btn-dark {
    background: #333;
    color: white;
}

.center-card .btn-light {
    background: white;
    color: #f58220;
    border: 2px solid #f58220;
}

.form-select.cms-plugin {
    width: 200px;
    margin-top: 0;
}

hr {
    color: white;
}

.logo .img-fluid {
    width: 200px;
    height: 40px;
}

.card-header {
    display: flex !important;
    justify-content: space-between;
}

/* === DROPDOWN CONTAINER === */
.dropdown {
    position: relative;
    width: 100%;
}

/* === TRIGGER BUTTON === */
.dropdown-trigger {
    width: 200px !important;
    padding: 8px 16px;
    border: none;
    background: white;
    border-radius: 12px;
    font-weight: bold;
    font-size: 14px;
    font-weight: 600 !important;
    color: #f58220;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    position: relative;
    margin: 0 10px !important;
}

/* === DROPDOWN ARROW ICON === */
.dropdown-trigger::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    pointer-events: none;
}

/* === DROPDOWN MENU === */
.dropdown-menu {
    display: none;
    position: absolute;
    width: 200px;
    top: 115%;
    left: 10px;
    z-index: 1000;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);

    /* ✅ Show only 4 visible items max */
    max-height: calc(40px * 4);
    overflow-y: auto;

    /* Scrollbar styling */
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: #ccc transparent;
}

.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

/* === DROPDOWN ITEM === */
.dropdown-item {
    padding: 8px 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background-color: #f3f3f3;
}

/* === FLAG STYLING === */
.dropdown-item img,
.dropdown-flag img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 2px;
    display: inline-block;
    vertical-align: middle;
}

/* === SELECTED FLAG + TEXT DISPLAY === */
.dropdown-flag {
    display: flex;
    align-items: center;
}

.country-label {
    /* font-weight: bold; */
    font-size: 14px;
}

.center-line {
    width: 100%;
    height: 1px;
    background-color: white;
    margin: 48px 0;
}

.btn-style {
    display: inline-block;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    margin: 0 30px;
    transition: all 0.2s ease;
    opacity: 0.9;
}

/* 🔘 Professional */
.btn-style.solid {
    background-color: #1d1d1d;
    color: white;
}

/* 🟠 Konsument */
.btn-style.outlined {
    background-color: #e9e9e9;
    color: #f58220;
}

/* Hover effects */
.btn-style:hover {
    opacity: 1;
}

/* 🔤 'eller' */
.btn-separator {
    font-size: 16px;
    font-weight: normal;
    color: white;
    margin: 0 10px;
    vertical-align: middle;
}


.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.zoom-bg .left,
.zoom-bg .right {
    transform: scale(1.05);
}

.cta-buttons p{
    margin-bottom: 0;
}