* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('IMG_0662.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.white-box {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    max-width: 90%;
    width: 100%;
    max-width: 1200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.title {
    text-align: center;
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.loading {
    text-align: center;
    font-size: 1.2em;
    color: #555;
    padding: 20px;
}

.error {
    text-align: center;
    font-size: 1.1em;
    color: #e74c3c;
    padding: 20px;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: 5px;
    margin: 10px 0;
}

.empty-message {
    text-align: center;
    font-size: 1.3em;
    color: #7f8c8d;
    padding: 30px;
    font-style: italic;
}

#table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 1.1em;
}

thead {
    background-color: #34495e;
    color: white;
}

th {
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
    border: 1px solid #2c3e50;
}

tbody tr {
    background-color: rgba(255, 255, 255, 0.8);
    transition: background-color 0.3s ease;
}

tbody tr:nth-child(even) {
    background-color: rgba(236, 240, 241, 0.9);
}

tbody tr:hover {
    background-color: rgba(52, 152, 219, 0.2);
}

td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #bdc3c7;
    color: #2c3e50;
}

/* Responsive design for smart TVs */
@media (min-width: 1920px) {
    .title {
        font-size: 3em;
    }
    
    table {
        font-size: 1.3em;
    }
    
    th, td {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .white-box {
        padding: 20px;
        max-width: 95%;
    }
    
    .title {
        font-size: 2em;
    }
    
    table {
        font-size: 0.9em;
    }
    
    th, td {
        padding: 10px;
    }
}


