﻿body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f7f9fb;
    margin: 20px;
}

h1 {
    color: #2c3e50;
    font-size: 34px;
    margin-bottom: 25px;
    text-align: center;
}

p a {
    display: inline-block;
    padding: 10px 22px;
    background-color: #2980b9;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

    p a:hover {
        background-color: #1c5980;
        transform: scale(1.05);
    }

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    margin-top: 30px;
}

thead {
    background-color: #2c3e50;
    color: #ecf0f1;
    font-size: 14px;
    text-transform: uppercase;
}

th, td {
    padding: 16px;
    border-bottom: 1px solid #dfe6e9;
    text-align: left;
}

tbody tr {
    transition: background-color 0.2s ease;
}

    tbody tr:hover {
        background-color: #ecf0f1;
    }

td a {
    color: #2980b9;
    font-weight: 500;
    text-decoration: none;
    margin-right: 10px;
    transition: color 0.3s;
}

    td a:hover {
        color: #1c5980;
        text-decoration: underline;
    }
