:root {
    --wilo-green: #008f4c;
    --wilo-dark: #2d2d2d;
    --wilo-light-green: #e6f4ed;
    --wilo-gray: #f4f4f4;
    --wilo-orange: #f39200;
}

.text-small {
   font-size: 12px;
}
.account-container {
    font-family: 'Arial', sans-serif;
    color: var(--wilo-dark);
    padding-bottom: 50px;
}

.breadcrumbs-2026 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--wilo-gray);
    margin-bottom: 20px;
}

.breadcrumbs-2026 a {
    color: var(--wilo-green);
    text-decoration: none;
}

.breadcrumbs-2026 .logout {
    background: var(--wilo-dark);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}

/* Balance Section */
.balance-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    position: relative;
    min-height: 250px;
}

.circle {
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.circle-total {
    width: 180px;
    height: 180px;
    background: var(--wilo-green);
    color: white;
    z-index: 2;
    position: relative;
}

.circle-2026 {
    width: 140px;
    height: 140px;
    background: var(--wilo-dark);
    color: white;
    z-index: 1;
    margin-left: -36px;
    margin-top: 60px;
}

.circle .val {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.circle .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-top: 5px;
    text-align: center;
    padding: 0 10px;
}

/* CTA Section & Reward Cards */
.cta-section {
    margin-bottom: 30px;
}

.scan-btn-wrapper {
    margin-bottom: 25px;
}

.rewards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .rewards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.reward-status-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: transform 0.2s;
}

.reward-status-card:hover {
    transform: translateY(-3px);
}

.reward-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reward-icon {
    width: 50px;
    height: 50px;
    background: var(--wilo-light-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.reward-title {
    font-weight: bold;
    font-size: 16px;
}

.reward-req {
    font-size: 12px;
    color: #888;
}

.btn-2026 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-primary-2026 {
    background: var(--wilo-green);
    color: #eee;
    box-shadow: 0 4px 15px rgba(0, 143, 76, 0.3);
}

.btn-primary-2026:hover {
    color: #fff;
    text-decoration: none;
}

.btn-locked-2026 {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
    pointer-events: none;
}

.missing-points {
    background: var(--wilo-light-green);
    color: var(--wilo-green);
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
    font-weight: 600;
}

/* Cards */
.account-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.account-card h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--wilo-green);
    border-left: 4px solid var(--wilo-green);
    padding-left: 10px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f9f9f9;
    font-size: 14px;
}

.data-row span:first-child {
    color: #777;
}

.data-row span:last-child {
    font-weight: 600;
}

.btn-sm-2026 {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
}

/* Tables */
.table-2026 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.table-2026 th {
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
    padding: 10px;
    font-weight: normal;
}

.table-2026 td {
    background: #fdfdfd;
    padding: 12px 10px;
    font-size: 13px;
    vertical-align: middle;
}

.table-2026 tr td:first-child { border-radius: 8px 0 0 8px; }
.table-2026 tr td:last-child { border-radius: 0 8px 8px 0; }

.badge-prize {
    background: var(--wilo-light-green);
    color: var(--wilo-green);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.4;
    max-width: 100%;
    word-break: break-word;
    vertical-align: middle;
    margin: 2px 0;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

/* Pagination */
.pagination-2026 {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.pagination-2026 span, .pagination-2026 a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: white;
    border: 1px solid #ddd;
    text-decoration: none;
    color: var(--wilo-dark);
    font-size: 14px;
}

.pagination-2026 .active {
    background: var(--wilo-green);
    color: white;
    border-color: var(--wilo-green);
}

.pagination-sm-2026 span, .pagination-sm-2026 a {
    width: 28px;
    height: 28px;
    font-size: 12px;
    border-radius: 6px;
}

/* Claim Prize Form Specific */
.prize-hero {
    background: var(--wilo-light-green);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.prize-icon-circle {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.prize-title-desc h1 {
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--wilo-green);
}

.info-box-2026 {
    background: white;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    margin-bottom: 30px;
}

.info-box-2026 h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--wilo-orange);
}

.info-box-2026 p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.5;
    color: #666;
}

.contest-form-2026 {
    background: white;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.form-section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--wilo-dark);
    border-bottom: 2px solid var(--wilo-gray);
    padding-bottom: 10px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}

.form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: var(--wilo-green);
    box-shadow: 0 0 0 3px rgba(0, 143, 76, 0.1);
}

.btn-submit-2026 {
    background: var(--wilo-green);
    color: white;
    padding: 15px 40px;
    border-radius: 12px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
    box-shadow: 0 5px 15px rgba(0, 143, 76, 0.3);
    text-transform: uppercase;
}

.btn-submit-2026:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 143, 76, 0.4);
}

.btn-submit-2026:disabled {
    background: #ccc;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.footer-info {
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
    text-align: center;
}

.footer-info a {
    color: var(--wilo-green);
    font-weight: bold;
}

@media (max-width: 768px) {
    .prize-hero {
        flex-direction: column;
        text-align: center;
    }
}

/* Modern Footer 2026 - Mini Version */
.footer-2026 {
    background: rgb(54, 54, 64);
    color: rgb(195, 195, 198);
    padding: 40px 0 20px 0;
    margin-top: 50px;
    font-family: 'Arial', sans-serif;
    width: 100%;
}

.footer-2026 h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-2026 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-2026 ul li {
    margin-bottom: 0;
}

.footer-2026 ul li a {
    color: rgb(195, 195, 198);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-2026 ul li a:hover {
    color: var(--wilo-green);
}

.footer-contact-mini {
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-contact-mini a {
    color: var(--wilo-green);
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    .footer-2026 {
        text-align: center;
    }
    .footer-2026 ul {
        justify-content: center;
    }
    .footer-contact-mini {
        flex-direction: column;
        text-align: center;
    }
}


.config-step {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.config-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--wilo-green);
    display: flex;
    align-items: center;
}
.config-step h3 .step-num {
    background: var(--wilo-green);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 10px;
}

/* Scanner Styles */
.scanner-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    aspect-ratio: 4/3;
}
#scanner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.scanner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 40px solid rgba(0,0,0,0.3);
    pointer-events: none;
}
.scanner-laser {
    position: absolute;
    top: 50%; left: 10%; right: 10%;
    height: 2px;
    background: var(--wilo-green);
    box-shadow: 0 0 10px var(--wilo-green);
    animation: scan-line 2s infinite ease-in-out;
}
@keyframes scan-line {
    0%, 100% { top: 20%; }
    50% { top: 80%; }
}
.manual-entry-box {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-top: 30px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.or-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.or-divider::before, .or-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}
.or-divider:not(:empty)::before { margin-right: 15px; }
.or-divider:not(:empty)::after { margin-left: 15px; }

/* Modal Styles */
#scannerModal .modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}
#scannerModal .modal-header {
    background: var(--wilo-green);
    color: white;
    border: none;
}
#scannerModal .modal-header .close {
    color: white;
    opacity: 0.8;
}
#scannerModal .modal-footer {
    border: none;
    padding: 20px;
}
.btn-modal-primary {
    background: var(--wilo-green);
    color: white;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: bold;
    border: none;
}