html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
}

/*LOGIN SECTION*/

.login-body-wrapper {
    background-color: #ffffff;
}

.banner  {
    background-color: #18995d;
    color: #ffffff;
    display: flex;
    justify-content: center;
}

.login-form-wrapper {
    display: flex;
    justify-content: center;
}

.login-form {
    width: 380px;
    max-width: 100%;
    margin: 20px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 6px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

.login-form input:focus {
    border-color: #18995d;
    outline: none;
}

.login-form .glemt-kode-wrapper {
    display: flex;
    justify-content: flex-end;
}

.login-form button {
    padding: 12px;
    border: none;
    border-radius: 4px;
    background: #18995d;
    color: #ffffff;
    font-size: 16px;
}

.login-form button[type="button"] {
    background: #e0e0e0;
    color: #000000;
}

.login-form .separator {
    text-align: center;
    color: #777777;
}

.login-form a {
    font-size: 14px;
    text-align: center;
    color: #18995d;
}

.fordele-wrapper {
    display: flex;
    justify-content: center;
}

.fordele {
    max-width: 100%;
    padding: 20px;
    font-size: min(3.8vmin, 16px);
}

.fordele ul {
    padding-left: 20px;
}

.fordele li::marker {
    color: #18995d;
}

/*DASHBOARD SECTION*/

.dashboard-body-wrapper {
    background-color: #ffffff;
}

.dashboard-title {
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

.dashboard-bokse-wrapper {
    display: flex;
    justify-content: center;
}

.dashboard-bokse {
    width: 500px;
    max-width: 100%;
    margin: 20px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow:
        0 -1px 2px rgba(0,0,0,0.22), /* TOP – samme skarphed som sider */
        0 1px 2px rgba(0,0,0,0.22),  /* SIDER */
        0 3px 4px rgba(0,0,0,0.28);  /* BUND */
    overflow: hidden;
}

.boks-knap {
    width: 100%;
    background: none;
    border: none;
    padding: 0 16px;
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    border-bottom: 1px solid #e0e0e0;
}

.boks-knap .ikon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 10px;
}

.boks-tekst {
    display: flex;
    align-items: center;
}

.boks-knap .pil {
    transition: 0.2s ease;
    font-weight: 400;
}           

.dashboard-boks.open .pil {
    transform: rotate(180deg);
}

.boks-indhold {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    padding: 0 16px;
}

.boks-indhold ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.boks-indhold li {
    padding: 6px 0;
}

.boks-indhold li a {
    text-decoration: none;
    color: #18995d;
}

.dashboard-boks.open .boks-indhold {
    padding: 12px 16px;
}

.dashboard-boks:last-child {
    border-bottom: none;
}

.dashboard-boks.open + .dashboard-boks .boks-knap {
    border-top: 1px solid #e0e0e0;
}

.dashboard-bokse .dashboard-boks:first-child .boks-knap {
    border-top: none;
}

.dashboard-boks:last-child .boks-knap {
    border-bottom: 1px solid #e0e0e0;
}

.rediger-knap {
    background: #e0e0e0;
    color: #000000;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
}

.loyalitet-wrapper {
    display: flex;
    justify-content: center;
}

.loyalitet {
    width: 500px;
    max-width: 100%;
    margin: 20px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow:
        0 -1px 2px rgba(0,0,0,0.22),
        0 1px 2px rgba(0,0,0,0.22),
        0 3px 4px rgba(0,0,0,0.28);
}

.loyalitet-indhold {
    padding: 0 20px 20px 20px;
}

.loyalitet h3 {
    text-align: center;
}

.loyalitet-bar {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 6px;
    overflow: visible;
    margin-bottom: 10px;
    position: relative;
}

.loyalitet-bar-fill {
    height: 100%;
    background: #18995d;
    border-radius: 6px 0 0 6px;
    position: relative;
}

.loyalitet-markor {
    position: absolute;
    right: 0;
    top: -4px;
    bottom: -4px;
    width: 2px;
    background: #18995d;
}

.loyalitet-milepaele {
    display: flex;
    justify-content: space-between;
    font-size: min(3.5vmin, 14px);
    color: #777777;
    margin-bottom: 20px;
}

.loyalitet-info p {
    margin: 4px 0;
    font-size: min(3.8vmin, 16px);
}