.page-title {
    text-align: center;
    font-size: 24px;
    color: #333;
}

.admin-table {
    margin: auto;
    border-collapse: collapse;
    width: 90%;
    background-color: #fff;
}

.admin-table th {
    background-color: #ffd700;
    padding: 10px;
}

.admin-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

input[type="text"] {
    background-color: #e0e0ff;
    width: 100%;
}
.home-link {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 24px;
    text-decoration: none;
}

body {
    background-color: #000; /* Μαύρο φόντο */
    font-family: Tahoma;
}

.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 {
  transition: all 0.2s ease;
}

.action-btn.hover {
  background-color: #ffd700;
  color: white;
  transform: scale(1.1);
}
