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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
header {
    text-align: center;
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* Upload section styles */
.upload-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.upload-area {
    border: 3px dashed #bdc3c7;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-area:hover {
    border-color: #3498db;
    background-color: #f8f9fa;
}

.upload-area.dragover {
    border-color: #27ae60;
    background-color: #e8f5e8;
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.upload-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.upload-area p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.file-types {
    color: #7f8c8d;
    font-size: 0.9rem !important;
}

.file-info {
    margin-top: 20px;
    padding: 15px;
    background-color: #e8f4fd;
    border-radius: 5px;
    border-left: 4px solid #3498db;
}

.file-info p {
    margin-bottom: 5px;
}

/* Button styles */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-success {
    background-color: #2ecc71;
    color: white;
}

.btn-success:hover {
    background-color: #27ae60;
}

.btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

/* Mapping section styles */
.mapping-section {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mapping-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.mapping-description {
    color: #666;
    margin-bottom: 20px;
}

.mapping-grid {
    display: grid;
    gap: 20px;
}

.mapping-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 15px;
    align-items: center;
}

.mapping-label {
    font-weight: 500;
    color: #2c3e50;
}

.mapping-label.required::after {
    content: '*';
    color: #e74c3c;
    margin-left: 4px;
}

.mapping-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #2c3e50;
}

.mapping-select.required {
    border-color: #3498db;
}

/* Preview section styles */
.preview-section {
    margin-top: 30px;
}

.preview-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.preview-table-container {
    margin-top: 15px;
    overflow-x: auto;
}

.preview-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.preview-table th,
.preview-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.preview-table th {
    background: #f8f9fa;
    font-weight: 500;
    color: #2c3e50;
}

.preview-table tr:nth-child(even) {
    background: #f8f9fa;
}

.preview-table .mapped-title {
    background-color: #e8f5e8;
    border-left: 3px solid #27ae60;
}

.preview-table .mapped-content {
    background-color: #e8f4fd;
    border-left: 3px solid #3498db;
}

/* Action buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Results section styles */
.results-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.results-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Results styles */
.result-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 20px 0;
    overflow: hidden;
}

.result-card.severe {
    border-left: 5px solid #e74c3c;
}

.result-card.borderline {
    border-left: 5px solid #f39c12;
}

.result-card.puppy {
    border-left: 5px solid #2ecc71;
}

.result-card.violation {
    border-left: 5px solid #c0392b;
}

.result-card .result-header {
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.danger-badge {
    padding: 5px 10px;
    border-radius: 4px;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
}

.danger-badge.severe {
    background-color: #e74c3c;
}

.danger-badge.borderline {
    background-color: #f39c12;
}

.danger-badge.puppy {
    background-color: #2ecc71;
}

.danger-badge.violation {
    background-color: #c0392b;
}

.result-card .result-body {
    padding: 20px;
}

.comment-info {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.comment-info p {
    margin: 10px 0;
}

.comment-info strong {
    color: #2c3e50;
}

.score-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.score-item {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 4px;
}

.score-bar {
    height: 20px;
    background: #eee;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin-top: 5px;
}

.score-fill {
    height: 100%;
    background: #3498db;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.score-value {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #333;
}

.warnings {
    margin-top: 25px;
    padding: 20px;
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 6px;
}

.warnings h4 {
    color: #856404;
    margin-top: 0;
    margin-bottom: 15px;
}

.warnings ul {
    margin: 0;
    padding-left: 20px;
}

.warnings li {
    color: #856404;
    margin-bottom: 8px;
}

.warnings .no-warnings {
    color: #856404;
    font-style: italic;
    margin: 0;
}

/* Tab styles */
.main-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: #eee;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.tab-btn.active {
    background: #3498db;
    color: white;
}

.tab-panel {
    display: none;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.tab-panel.active {
    display: block;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .score-grid {
        grid-template-columns: 1fr;
    }
    
    .main-tabs {
        flex-direction: column;
    }
}

/* 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); }
}

/* Error messages */
.error-message {
    background-color: #fdf2f2;
    color: #e74c3c;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #e74c3c;
    margin: 15px 0;
}

/* Success messages */
.success-message {
    background-color: #f0f9f0;
    color: #27ae60;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #27ae60;
    margin: 15px 0;
}

/* Moderation section styles */
.moderation-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.moderation-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Progress container */
.progress-container {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.progress-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.progress-info p {
    margin: 5px 0;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #27ae60);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 10px;
}

/* Results tabs */
.results-tabs {
    display: flex;
    border-bottom: 2px solid #ecf0f1;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 5px;
}

.tab-btn {
    padding: 12px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    background-color: #f8f9fa;
}

.tab-btn.active {
    color: #3498db;
    border-bottom-color: #3498db;
    background-color: #e8f4fd;
}

.tab-btn[data-type="borderline"].active {
    color: #f39c12;
    border-bottom-color: #f39c12;
    background-color: #fef9e7;
}

.tab-btn[data-type="severe"].active {
    color: #e74c3c;
    border-bottom-color: #e74c3c;
    background-color: #fdf2f2;
}

.tab-btn[data-type="violation"].active {
    color: #8e44ad;
    border-bottom-color: #8e44ad;
    background-color: #f4ecf7;
}

.tab-btn[data-type="puppy"].active {
    color: #27ae60;
    border-bottom-color: #27ae60;
    background-color: #e8f5e8;
}

/* Tab content */
.tab-content {
    min-height: 300px;
}

.comment-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    background: white;
    transition: all 0.3s ease;
}

.comment-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.comment-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.comment-id {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.danger-score {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.danger-score.borderline {
    background-color: #f39c12;
}

.danger-score.severe {
    background-color: #e74c3c;
}

.danger-score.violation {
    background-color: #8e44ad;
}

.danger-score.puppy {
    background-color: #27ae60;
}

.comment-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.comment-text {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    border-left: 4px solid #3498db;
}

.breakdown-section {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.breakdown-title {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-align: center;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.breakdown-item {
    text-align: center;
    padding: 8px;
    border-radius: 5px;
    background: #f8f9fa;
}

.breakdown-label {
    font-size: 12px;
    color: #7f8c8d;
    margin-bottom: 5px;
    font-weight: 500;
}

.breakdown-score {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.breakdown-score.high {
    color: #e74c3c;
}

.breakdown-score.medium {
    color: #f39c12;
}

.breakdown-score.low {
    color: #27ae60;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid #ecf0f1;
}

#pageInfo {
    font-weight: 500;
    color: #2c3e50;
}

/* Loading states */
.loading-state {
    text-align: center;
    padding: 40px;
    color: #7f8c8d;
}

.loading-state .loading {
    margin: 0 auto 15px;
    display: block;
}

/* Modal styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    margin: 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-body {
    padding: 20px;
}

.modal-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .results-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        text-align: center;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .breakdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .progress-info {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

/* Form styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-label.required::after {
    content: '*';
    color: #e74c3c;
    margin-left: 4px;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 15px 0;
}

.metric-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.metric-name {
    font-weight: 500;
    color: #2c3e50;
}

.metric-value {
    font-weight: 600;
    color: #2980b9;
}

.metric-bar {
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: #3498db;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.overall-scores {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.overall-scores .score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.overall-scores .score-item:last-child {
    border-bottom: none;
}

.overall-scores .score-label {
    font-weight: 500;
    color: #2c3e50;
}

.overall-scores .score-value {
    font-weight: 600;
    color: #2980b9;
    font-size: 1.1em;
}

/* Results Sections */
.results-section,
.moderation-section {
    margin-top: 30px;
}

/* Bulk Results Section */
.bulk-results {
    margin-top: 30px;
}

/* Progress Section */
.moderation-progress {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.moderation-progress h2 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 1.5em;
}

.progress-container {
    margin-top: 20px;
}

.progress-info {
    margin-bottom: 15px;
}

.progress-info p {
    margin: 8px 0;
    color: #2c3e50;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-info p strong {
    font-weight: 600;
    min-width: 120px;
}

.progress-info p span {
    font-weight: 500;
    color: #3498db;
}

.progress-bar {
    height: 12px;
    background: #eee;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 15px;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(to right, #3498db, #2ecc71);
    border-radius: 6px;
    transition: width 0.3s ease;
}

/* Results Categories */
.moderation-results {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
}

.moderation-results h2 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 1.5em;
}

.results-tabs {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.results-tabs::-webkit-scrollbar {
    height: 4px;
}

.results-tabs::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.results-tabs::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2px;
}

.results-tabs .tab-btn {
    padding: 8px 16px;
    border: none;
    background: #f8f9fa;
    border-radius: 4px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: fit-content;
}

.results-tabs .tab-btn:hover {
    background: #e9ecef;
    color: #2c3e50;
}

.results-tabs .tab-btn.active {
    background: #3498db;
    color: white;
}

.tab-content {
    min-height: 200px;
    padding: 20px 0;
}

/* Result Items */
.result-item {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid;
}

.result-item.puppy {
    border-color: #2ecc71;
}

.result-item.borderline {
    border-color: #f1c40f;
}

.result-item.violation {
    border-color: #e67e22;
}

.result-item.severe {
    border-color: #e74c3c;
}

.result-item .result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.result-item .result-id {
    font-weight: 600;
    color: #2c3e50;
}

.result-item .result-score {
    font-weight: 500;
    color: #3498db;
}

.result-item .result-content {
    color: #2c3e50;
    line-height: 1.5;
}

.result-item .result-content p {
    margin: 0;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
    background: #f8f9fa;
    border-radius: 6px;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.pagination .btn {
    min-width: 100px;
}

.pagination .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#pageInfo {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .results-tabs {
        flex-wrap: nowrap;
        margin: 15px -20px;
        padding: 0 20px 10px;
    }

    .progress-info p {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .progress-info p strong {
        min-width: auto;
    }
}

.result-scores {
    display: flex;
    gap: 15px;
}

.danger-score {
    color: #e74c3c;
    font-weight: 600;
}

.quality-score {
    color: #27ae60;
    font-weight: 600;
}

.comment-title {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 1.1em;
}

.comment-text {
    margin: 0;
    line-height: 1.5;
    color: #34495e;
}

.analysis-breakdown {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.analysis-breakdown h4 {
    margin: 0 0 15px 0;
    color: #2c3e50;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.metric-item {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 4px;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.metric-name {
    color: #2c3e50;
    font-weight: 500;
}

.metric-value {
    color: #3498db;
    font-weight: 600;
}

.metric-bar {
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transition: width 0.3s ease;
}

.warnings {
    margin-top: 20px;
    padding: 15px;
    background: #fff3cd;
    border-radius: 4px;
    border-left: 4px solid #ffc107;
}

.warnings h4 {
    margin: 0 0 10px 0;
    color: #856404;
}

.warnings ul {
    margin: 0;
    padding-left: 20px;
}

.warnings li {
    color: #856404;
    margin-bottom: 5px;
}

.warnings li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .result-scores {
        flex-direction: column;
        gap: 5px;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

.result-title {
    font-size: 1.2em;
    font-weight: 500;
    color: #2c3e50;
    margin-right: 15px;
}

.comment-id {
    font-size: 0.8em;
    color: #7f8c8d;
    font-weight: normal;
    margin-left: 8px;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.result-scores {
    display: flex;
    gap: 15px;
    align-items: center;
}

@media (max-width: 768px) {
    .result-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .result-title {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .result-scores {
        width: 100%;
        justify-content: space-between;
    }
}

/* Login Page Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.login-form {
    background: white;
    padding: 40px 30px 30px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-form h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 10px;
}

.login-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.login-form .form-label {
    font-weight: 500;
    color: #2c3e50;
}

.login-form .form-input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #2c3e50;
}

.login-form .action-buttons {
    display: flex;
    justify-content: center;
}

.login-form .btn {
    width: 100%;
}

.login-form .error-message {
    color: #e74c3c;
    background: #fdeaea;
    border: 1px solid #e74c3c;
    border-radius: 4px;
    padding: 8px 12px;
    margin-top: 10px;
    text-align: center;
    font-size: 0.98rem;
} 