@charset "UTF-8";

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1a1a1a, #333);
    font-family: 'Roboto', Arial, Sans-Serif;
    color: #ddd;
}

body {
    font-size: 16px;
    line-height: 1.5;
}

a {
    color: #00AFBD;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

    a:hover {
        color: #FFA200;
    }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

th, td {
    padding: 10px;
    border: 1px solid #444;
    text-align: left;
}

th {
    background: rgba(255, 255, 255, 0.2);
    font-weight: bold;
}

tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

.button {
    background: linear-gradient(to right, #FF3400, #FFA200);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .button:hover {
        background: linear-gradient(to right, #FFA200, #FF3400);
    }

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #222;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    width: 80%;
    max-width: 500px;
}

    .modal.active {
        display: block;
    }

.modal-header {
    font-size: 20px;
    margin-bottom: 10px;
}

.modal-footer {
    margin-top: 20px;
    text-align: right;
}

td .background {
    color: #FFFFFF;
    min-width: 60px;
    padding: 3px 6px;
    margin-left: 5px;
    margin-right: 8px;
    text-align: center;
    font-weight: bold;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

.round-gw {
    border-radius: 5%;
    -webkit-border-radius: 5%;
    -moz-border-radius: 5%;
    box-shadow: 0 0 5px #fff;
}

.round-image {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}
