/* -----------------------------
   ÜLDINE STIIL (минимализм)
-------------------------------- */
body {
    margin: 0;
    padding: 20px;
    background-color: #1A1A1A;
    font-family: Arial, sans-serif;
    color: #E2E2E2;
}

/* Заголовки */
h1, h2 {
    font-weight: 400;
    margin-bottom: 15px;
}

/* Ссылки */
a {
    text-decoration: none;
    font-weight: bold;
}

/* -----------------------------
   TABEL (строгий, квадратный)
-------------------------------- */
table {
    width: 100%;
    border-collapse: collapse; /* квадратный стиль */
    margin-top: 20px;
    background-color: #111;
}

th, td {
    padding: 12px 10px;
    border-bottom: 1px solid #333;
}

th {
    background-color: #000;
    text-align: left;
    color: #ccc;
}

/* Фото */
#Presidentimg {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 1px solid #444;
}

/* -----------------------------
   STAATUS (avalik/peidetud)
-------------------------------- */

/* Avalik */
td.status-avalik {
    color: #18d57a; /* зелёный */
    font-weight: bold;
}

/* Peidetud */
td.status-peidetud {
    color: #ffcc00; /* жёлтый */
    font-weight: bold;
}

/* -----------------------------
   NUPUD (кнопки-ссылки)
-------------------------------- */

.action-btn {
    padding: 5px 8px;
    margin-right: 6px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
}

/* Näita */
.btn-green {
    color: #18d57a;
}

/* Peida */
.btn-yellow {
    color: #ffcc00;
}

/* Nulli punktid */
.btn-blue {
    color: #33aaff;
}

/* Kustuta */
.btn-red {
    color: #ff4444;
}

/* -----------------------------
   VORM LISAMISEKS
-------------------------------- */
form {
    background-color: #111;
    padding: 20px;
    margin-top: 25px;
    border: 1px solid #333;
}

input[type="text"],
textarea {
    width: 100%;
    padding: 10px;
    background-color: #1c1c1c;
    border: 1px solid #333;
    color: white;
    outline: none;
}

input[type="submit"] {
    margin-top: 15px;
    padding: 10px 15px;
    background-color: #18d57a; /* зелёная кнопка */
    color: black;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #12aa5e;
}

/* Чекбокс */
label {
    color: #ddd;
}

a {
    color: #f1f1f1;
    transition: ease-out 0.1s;
}

a:hover {
    color: firebrick;
}