/* admin_clients.css */
body {
    background-color: #000;
    font-family: Tahoma, sans-serif;
}

.page-title {
    text-align: center;
    font-size: 24px;
    color: #fff;
    margin-top: 20px;
}

.admin-table {
    margin: auto;
    border-collapse: collapse;
    width: 95%;
    background-color: #fff;
    font-size: 14px;
}

.admin-table th {
    background-color: #ffd700;
    padding: 10px;
    border: 1px solid #ddd;
    color: #000;
}

.admin-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

input[type="text"] {
    background-color: #e0e0ff;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
}

.home-link {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 24px;
    text-decoration: none;
    color: #fff;
}

.moving-highlight {
    width: 100%;
    padding: 15px 0;
    background: linear-gradient(90deg, #00ff00, #004400);
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    animation: moveRight 5s linear infinite;
    box-shadow: 0 0 10px #00ff00;
}

@keyframes moveRight {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.moving-highlight-bar {
    width: 100%;
    height: 30px;
    background: linear-gradient(90deg, #00ff00, #004400, #00ff00);
    background-size: 200% 100%;
    animation: slideHighlight 3s linear infinite;
    box-shadow: 0 0 20px #00ff00;
}

@keyframes slideHighlight {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Κουμπιά ενέργειας */
.action-btn {
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.2s ease;
}

.action-btn.hover {
    background-color: #ffd700;
    color: white;
    transform: scale(1.1);
}

/* Νέα κλάση για τα κουμπιά στο κάτω μέρος */




/* Για καλύτερη διάταξη στις φόρμες */
input[type="text"] {
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Αν ο χρήστης δεν έχει δικαιώματα */
.access-denied {
    text-align: center;
    color: red;
    font-size: 18px;
    margin-top: 50px;
}
