/* Essential resets and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #09101a;
    min-h: 100vh;
}
/* .bg-gray-800, .bg-gray-300{
    background-color: rgb(22, 17, 15) !important
}
.bg-gray-900{
    background-color: rgb(10, 7, 6) !important
} */
/* Upload progress styles */
.upload-progress {
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 20px;
    background: #4CAF50;
    width: 0;
    transition: width 0.3s ease;
}

.progress-text {
    display: block;
    text-align: center;
    margin-top: 5px;
}

/* Group submission feedback styles */
.group-submission {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.group-submission[data-status="incomplete"] {
    border-color: #374151; /* gray-700 */
}

.group-submission[data-status="minimum-met"] {
    border-color: #059669; /* green-600 */
    box-shadow: 0 0 15px rgba(5, 150, 105, 0.2);
}

.group-submission[data-status="exceeding"] {
    border-color: #84cc16; /* lime-500 */
    box-shadow: 0 0 20px rgba(132, 204, 22, 0.3);
}

.group-submission[data-status="outstanding"] {
    border-color: #84cc16; /* lime-500 */
    border-style: dashed;
    box-shadow: 0 0 25px rgba(132, 204, 22, 0.4);
    animation: borderDance 2s infinite linear;
}

@keyframes borderDance {
    0% { 
        border-style: dashed;
        box-shadow: 0 0 25px rgba(132, 204, 22, 0.4);
    }
    50% { 
        border-style: dotted;
        box-shadow: 0 0 35px rgba(132, 204, 22, 0.5);
    }
    100% { 
        border-style: dashed;
        box-shadow: 0 0 25px rgba(132, 204, 22, 0.4);
    }
}

/* Error states */
.error-message {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    margin: 1rem 0;
}

.error-details {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

/* After your existing @font-face and @keyframes rules */
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.2;
}