body {
    font-family: Arial, sans-serif;
    background: #f5f7fa;
    color: #333;
    margin: 0;
    padding: 2rem;
}

h2 {
    color: #2c3e50;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

th {
    background-color: #3498db;
    color: white;
    padding: 10px;
    text-align: left;
}

td {
    padding: 10px;
    border-top: 1px solid #eee;
}

input[type="text"],
input[type="password"] {
    padding: 6px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 6px 10px;
    margin: 0 2px;
    border: none;
    border-radius: 4px;
    background-color: #3498db;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #2980b9;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

form.inline {
    display: flex;
    gap: 6px;
}

 /* 
@media (max-width: 768px) {
    table, thead, tbody, th, td, tr {
        display: block;
    }
    th, td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }
    th::before, td::before {
        position: absolute;
        left: 10px;
        width: 45%;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }
}
 */ 

#top-right-container {
    position: absolute;
    top: 10px; 
    right: 30px; 
    text-align: right; 
}

