﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

img{
    max-width: 200px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
}

th, td {
    padding: 12px 15px;
    text-align: left;
}

th {
    background-color: #f4f4f4;
    border-bottom: 2px solid #e0e0e0;
    color: #333;
}

tr:nth-child(even) {
    background-color: #fafafa;
}

tr:hover {
    background-color: #f1f1f1;
}

a {
    text-decoration: none;
    color: #0066cc;
    font-weight: 600;
}

    a:hover {
        text-decoration: underline;
    }

.btn {
    background-color: #e7e7e7;
    border: none;
    padding: 6px 12px;
    margin: 0 2px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    font-size: 14px;
}

    .btn:hover {
        background-color: #d5d5d5;
    }

h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Зелена кнопка */
.btn-add {
    background-color: green;
    color: white; /* щоб текст був читабельним */
}

    .btn-add:hover {
        background-color: darkgreen;
    }

/* Червона кнопка */
.btn-delete {
    background-color: red;
}

    .btn-delete:hover {
        background-color: darkred;
    }

/* Жовта кнопка */
.btn-edit {
    background-color: gold;
    color: black; /* щоб текст був читабельним */
}

    .btn-edit:hover {
        background-color: goldenrod;
    }

