﻿body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9fafc;
    margin: 20px;
}

h1 {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 25px;
}

p a {
    background-color: #27ae60;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

    p a:hover {
        background-color: #1f8c4d;
        transform: scale(1.05);
    }

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    margin-top: 30px;
}

thead {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-transform: uppercase;
    font-size: 14px;
}

th, td {
    padding: 16px;
    border-bottom: 1px solid #e6eaf0;
    text-align: left;
    vertical-align: middle;
}

    td:nth-child(2) {
        max-width: 120px;
    }

        td:nth-child(2)::before {
            content: "🖼️ ";
        }

    td:nth-child(5) {
        font-weight: bold;
        color: #e67e22;
    }

    td:nth-child(6) {
        font-weight: bold;
        color: #2980b9;
    }

tbody tr:hover {
    background-color: #f1f2f6;
}

td a {
    color: #27ae60;
    text-decoration: none;
    margin-right: 10px;
    font-weight: 500;
    transition: color 0.3s ease;
}

    td a:hover {
        color: #1f8c4d;
        text-decoration: underline;
    }


.card-title {
    color: #2c3e50;
    font-weight: bold;
}

.card-text {
    font-size: 0.95rem;
    color: #555;
}

.card-footer .btn {
    margin: 2px;
    font-size: 0.85rem;
    padding: 5px 12px;
}
