<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* Error Messages */
.error-message {
    color: #dc3545;
    background-color: #f8d7da;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

/* Table Styling */
.committee-research-panel {
    overflow-x: auto;
    margin: 20px 0;
}

.research-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.research-table th,
.research-table td {
    padding: 12px;
    text-align: right;
    border-bottom: 1px solid #ddd;
}

.research-table th {
    background-color: #0073aa;
    color: white;
    font-weight: bold;
}

.research-table tr:hover {
    background-color: #f5f5f5;
}

/* File Status */
.file-status {
    font-weight: bold;
}

.file-status.success {
    color: #28a745;
}

.file-status.error {
    color: #dc3545;
}

/* Download Button */
.download-button {
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-left: 10px;
}

.download-button:hover {
    background-color: #0056b3;
}
.stats-container {
            font-family: Arial, sans-serif;
            background: #ffffff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            max-width: 100%;
            overflow-x: auto;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stats-card {
            background: #f8f8f8;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
        }
        .stats-card h3 {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
        }
        .stats-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .stats-list li {
            padding: 8px 0;
            font-size: 16px;
            color: #555;
        }
        .stats-list li strong {
            color: #222;
        }
        .scrollable-box {
            max-height: 150px;
            overflow-y: auto;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background: #f9f9f9;
        }
        
        /* General Styles */
.committee-dashboard {
    font-family: 'Arial', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dashboard-title {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
}

/* Search Bar */
.search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.search-input {
    flex: 1;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

.search-btn {
    padding: 12px 24px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #0056b3;
}

/* Branch Cards */
.branch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.branch-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.branch-btn {
    width: 100%;
    padding: 20px;
    background: #007bff;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.branch-btn:hover {
    background: #0056b3;
}

/* Candidate List */
.candidate-list {
    margin-top: 30px;
}

.candidate-item {
    margin-bottom: 15px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.candidate-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.candidate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f7f7f7;
    cursor: pointer;
}

.candidate-header span {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.candidate-details {
    display: none;
    padding: 15px;
    background: #f9f9f9;
    border-top: 1px solid #ddd;
}

.candidate-details table {
    width: 100%;
    border-collapse: collapse;
}

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

.candidate-details th {
    background: #f1f1f1;
    font-weight: bold;
}

.close-btn {
    margin-top: 10px;
    padding: 8px 16px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: #cc0000;
}
/* No Candidates Message */
.no-candidates {
    text-align: center;
    color: #ff4444;
    font-size: 18px;
    margin-top: 20px;
}

/* Branch Title */
.branch-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

/* Candidate List */
.candidate-list {
    margin-top: 20px;
}

.candidate-item {
    margin-bottom: 15px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.candidate-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.candidate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f7f7f7;
    cursor: pointer;
}

.candidate-header span {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.candidate-details {
    display: none;
    padding: 15px;
    background: #f9f9f9;
    border-top: 1px solid #ddd;
}
/* No Results Message */
.no-results {
    text-align: center;
    color: #ff4444;
    font-size: 18px;
    margin-top: 20px;
}

/* Search Results Title */
.search-results-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

/* Candidate Info Title */
.candidate-info-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

/* Uploaded Files Title */
.uploaded-files-title {
    font-size: 24px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Decision Form Title */
.decision-form-title {
    font-size: 24px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Decision Form */
.decision-form {
    margin-top: 20px;
}

.decision-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.decision-form select,
.decision-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.decision-form button {
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.decision-form button:hover {
    background: #0056b3;
}

/* Success and Error Messages */
.success-message {
    color: green;
    text-align: center;
    margin-top: 20px;
}

.error-message {
    color: red;
    text-align: center;
    margin-top: 20px;
}
/* Close Button */
.close-btn {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: #cc0000;
}</pre></body></html>