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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #2c3e50;
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    backdrop-filter: blur(10px);
}

h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 300;
    color: #34495e;
}

h1 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

h1 a:hover {
    color: #3498db;
}

h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 500;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.backups-section {
    margin-bottom: 40px;
}

.table-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f4fd;
    overflow-x: auto;
}

.backup-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.backup-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.backup-table th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #5a67d8;
    position: relative;
}

.backup-table th:first-child {
    border-top-left-radius: 8px;
}

.backup-table th:last-child {
    border-top-right-radius: 8px;
}

.backup-table td {
    padding: 12px;
    border-bottom: 1px solid #ecf0f1;
    vertical-align: middle;
}

.backup-table tbody tr:hover {
    background-color: #f8f9fa;
    transition: background-color 0.2s ease;
}

.backup-table tbody tr:last-child td {
    border-bottom: none;
}

.backup-table td:first-child {
    font-weight: 600;
    color: #34495e;
    word-break: break-all;
}

.backup-table td:nth-child(2) {
    color: #7f8c8d;
    font-family: 'Courier New', Monaco, monospace;
}

.backup-table td:last-child {
    color: #2c3e50;
    font-weight: 600;
    white-space: nowrap;
    min-width: 70px;
}

.backup-table a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.backup-table a:hover {
    color: #2980b9;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
        margin: 10px;
    }
    
    h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .table-section {
        padding: 15px;
    }
    
    .backup-table th,
    .backup-table td {
        padding: 8px 6px;
        font-size: 0.85rem;
    }
    
    
    .backup-table td:nth-child(2) {
        font-size: 0.75rem;
    }
    
    .backup-table td:last-child {
        min-width: 60px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 1.7rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .table-section {
        padding: 8px;
    }
    
    .backup-table th,
    .backup-table td {
        padding: 6px 4px;
        font-size: 0.75rem;
    }
    
    
    .backup-table td:nth-child(2) {
        font-size: 0.7rem;
    }
    
    .backup-table td:last-child {
        min-width: 55px;
        font-size: 0.7rem;
    }
    
    .backup-table {
        font-size: 0.75rem;
    }
}
