/* admin_notifications.css */

.notifications-table {
    width: 80%;
    margin: auto;
    border-collapse: collapse;
    font-family: sans-serif;
    background-color: white;
    color: black;
}

.notifications-table th {
    background-color: #f2f2f2;
    text-align: center;
    padding: 12px;
    font-weight: bold;
    border-bottom: 2px solid #ddd;
}

.notifications-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    transition: background-color 0.3s ease;
}

.notifications-table tr:hover {
    background-color: #e0f7fa; /* ελαφρύ γαλάζιο όταν περνάει ο κέρσορας */
    cursor: pointer;
}

.notifications-table a {
    color: black;
    text-decoration: none;
}

.notifications-table a:hover {
    text-decoration: underline;
    color: #00695c; /* σκούρο κυανό */
}
