/* Main Styles */
body {
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* Authentication Pages */
.auth-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.auth-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.auth-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

/* Card Styling */
.card {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.card-header {
    background-color: #343a40;
    color: white;
    border-bottom: none;
}

/* Badge Styling */
.badge {
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 500;
}

/* Table Styling */
.table th {
    background-color: #f8f9fa;
    border-top: none;
}

/* Button Styling */
.btn {
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
}

/* Textarea Styling */
textarea.form-control {
    font-family: monospace;
    font-size: 14px;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .auth-container {
        padding: 10px;
    }
    
    .generator-container {
        flex-direction: column;
    }
}