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