﻿/* Base */
body {
    font-family: 'Quicksand', Helvetica, Arial, sans-serif;
    background: #bed9f2;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 24px;
    background: #ffffff;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 120px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 24px;
}

.logo {
    text-align: center;
    margin-bottom: 10px;
}

    .logo img {
        max-width: 160px;
        height: auto;
        display: inline-block;
        transition: max-width 0.4s ease;
    }

.header h2 {
    margin: 0;
    font-weight: 600;
    font-size: 24px;
    color: #002855;
}

.header h3 {
    font-weight: 400;
    font-size: 16px;
    color: #666;
    margin-top: 8px;
}

/* Section Cards */
.section {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    padding: 16px 20px;
    margin-bottom: 16px;
}

.label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.value {
    font-size: 17px;
    font-weight: 600;
    color: #111;
}

input.textbox {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

    input.textbox:focus {
        outline: none;
        border-color: #007bff;
    }

/* Badge */
#status {
    display: inline-block;
    padding: 6px 16px;
    background-color: #007bff;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Buttons */
.buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 16px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .btn:hover {
        transform: scale(1.02);
    }

.btn-accept {
    background-color: #002855;
    color: #fff;
}

.btn-decline {
    background-color: #f29c1f;
    color: #fff;
}

.btn:hover {
    opacity: 0.9;
}

@media (min-width: 768px) {
    .logo img {
        max-width: 200px;
    }
}

/* Desktop overrides */
@media (min-width: 601px) {
    .container {
        max-width: 720px;
        margin: 40px auto;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    }

/*    .buttons {
        position: static;
        flex-direction: row-reverse;
        justify-content: space-between;
        gap: 12px;
        padding: 0;
        box-shadow: none;
        background: none;
    }*/

    .buttons {
        position: static;
        flex-direction: row-reverse;
        justify-content: center;
        gap: 12px;
        padding: 0;
        box-shadow: none;
        background: none;
        margin-top: 20px;
    }

    .btn {
        flex: 1;
        width: auto;
        margin-bottom: 0;
    }
}


@media (min-width: 601px) {
    body {
        display: block;
        justify-content: center;
        align-items: center;
    }
}

/* Footer */
.footer {
    text-align: center;
    font-size: 14px;
    color: #555;
}

    .footer a {
        color: #007bff;
        text-decoration: underline;
    }

/* Progress Bar (optional) */
.progress-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
}

    .dot.active {
        background: #f29c1f;
    }

    .dot.complete {
        background: #007bff;
    }

/* Status Message */
.status-message {
    display: none;
    margin: 20px 0;
    padding: 12px 16px;
    border-radius: 8px;
    background-color: #ffe58f;
    color: #d4380d;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

    .status-message.visible {
        display: block;
    }

.container,
.section,
.img,
.btn,
.buttons {
    transition: all 0.5s ease;
}

/* Spinner */
.spinner {
    border: 4px solid #ccc;
    border-top: 4px solid #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
