* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

.logo-top {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.header-logo {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

.logo-top svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

h1 {
    font-size: 2.2em;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 50%, #bd2130 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-weight: 600;
}

.subtitle {
    color: #666;
    font-size: 1em;
    margin-bottom: 25px;
}

main {
    margin-bottom: 40px;
}

.table-container {
    overflow-x: auto;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
    border-radius: 8px;
    background-color: white;
    border: 1px solid rgba(220, 53, 69, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    font-size: 0.9em;
}

thead {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 50%, #bd2130 100%);
    color: white;
}

thead th {
    padding: 12px 10px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9em;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

thead th:first-child {
    text-align: left;
    min-width: 200px;
}

thead th:last-child {
    border-right: none;
}

tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

tbody tr:hover {
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.05) 0%, rgba(220, 53, 69, 0.02) 100%);
    transform: translateX(2px);
}

tbody tr:nth-child(even) {
    background: linear-gradient(90deg, #f8f8f8 0%, #fafafa 100%);
}

tbody tr:nth-child(even):hover {
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.08) 0%, rgba(220, 53, 69, 0.03) 100%);
}

tbody td {
    padding: 12px 10px;
    color: #555;
    border-right: 1px solid #f0f0f0;
    text-align: center;
}

tbody td:first-child {
    text-align: left;
    font-weight: 500;
}

tbody td:last-child {
    border-right: none;
}

.check-icon {
    color: #28a745;
    font-size: 1.3em;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(40, 167, 69, 0.3);
}

.cross-icon {
    color: #dc3545;
    font-size: 1.2em;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(220, 53, 69, 0.3);
}

footer {
    text-align: center;
    padding: 30px 20px 20px;
    border-top: 2px solid;
    border-image: linear-gradient(90deg, transparent 0%, #dc3545 50%, transparent 100%) 1;
    margin-top: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(245, 245, 245, 0.9) 100%);
}

.logo-bottom {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-logo-svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.copyright {
    color: #666;
    font-size: 0.85em;
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }
    
    .subtitle {
        font-size: 0.9em;
    }
    
    table {
        font-size: 0.8em;
    }
    
    thead th,
    tbody td {
        padding: 8px 6px;
    }
}

/* Scrollbar personalizada */
.table-container::-webkit-scrollbar {
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: linear-gradient(90deg, #e0e0e0 0%, #f1f1f1 100%);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #dc3545 0%, #c82333 100%);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #c82333 0%, #bd2130 100%);
}

