.attire-check-body {
    background-color: #f8f8f8;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    padding: 20px;
    margin: 0;
}

.attire-check-wrapper {
    width: 100%;
    max-width: 450px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.attire-check-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.attire-check-instruction {
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
    color: #555;
}

.attire-check-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

#videoPreview,
#capturedPreview {
    border: 1px solid #ccc;
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 8px;
}

.attire-check-countdown {
    margin-top: 10px;
    font-size: 18px;
    color: red;
    font-weight: bold;
}

.full-width-btn {
    width: 100%;
    max-width: 300px;
    margin-top: 15px;
}

.attire-check-bottom-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
    gap: 10px;
}

.btn {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    flex: 1;
}

.btn:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}

.btn:disabled,
.btn-disabled {
    background-color: #a0c5f8;
    cursor: not-allowed;
}

/* Mobile-first look is default, so no extra media queries needed */
/* ... [Keep all previous CSS you had] ... */

.sticky-capture-btn {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease;
    z-index: 1000;
}

.sticky-capture-btn:hover {
    background-color: #0056b3;
    transform: translateX(-50%) translateY(-2px);
}

.sticky-capture-btn:disabled {
    background-color: #a0c5f8;
    cursor: not-allowed;
}

/* Adjust for smaller screens if needed */
@media (max-width: 480px) {
    .sticky-capture-btn {
        padding: 10px 20px;
        font-size: 14px;
        bottom: 70px;
    }
}