* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    padding: 40px;
}

header {
    margin-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
}

header h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
}

header p {
    color: #666;
    font-size: 1.1em;
}

header a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.upload-section {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.upload-section h2 {
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #999;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

#uploadMessage {
    margin-top: 15px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

#uploadMessage.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#uploadMessage.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.statistics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.stat-box h3 {
    font-size: 0.9em;
    margin-bottom: 10px;
    opacity: 0.9;
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
}

.meetings-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.meetings-table th {
    background: #f0f0f0;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #333;
}

.meetings-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.meetings-table tr:hover {
    background: #f9f9f9;
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}

.badge-upl {
    background: #e3f2fd;
    color: #1976d2;
}

.badge-proc {
    background: #fff3e0;
    color: #f57c00;
}

.badge-comp {
    background: #e8f5e9;
    color: #388e3c;
}

.badge-fail {
    background: #ffebee;
    color: #d32f2f;
}

.link-view {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.link-view:hover {
    text-decoration: underline;
}

.content-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.content-section h2 {
    margin-bottom: 15px;
    color: #333;
}

.text-content {
    line-height: 1.6;
    color: #555;
    max-height: 400px;
    overflow-y: auto;
    padding: 15px;
    background: white;
    border-radius: 5px;
}

.action-items-table {
    width: 100%;
    border-collapse: collapse;
}

.action-items-table th {
    background: #667eea;
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.action-items-table td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.action-items-table tr:hover {
    background: #f0f0f0;
}

.processing-message, .error-message {
    text-align: center;
    padding: 40px;
    border-radius: 8px;
    margin: 20px 0;
}

.processing-message {
    background: #fff3e0;
    color: #f57c00;
}

.error-message {
    background: #ffebee;
    color: #d32f2f;
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    header h1 {
        font-size: 1.8em;
    }
    
    .statistics {
        grid-template-columns: 1fr;
    }
    
    .meetings-table {
        font-size: 0.9em;
    }
    
    .meetings-table th, .meetings-table td {
        padding: 10px;
    }
}