/* =========================
   GLOBALNO
   ========================= */

.site-body,
.login-body {
    margin: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    color: #f5f5f5;
    background-color: #000;
}

/* zajednička logika za pozadinske slike */
.page-background {
    position: fixed;
    inset: 0;
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    z-index: -1;
}

/* pozadina za LOGIN stranu */
.page-background.login-background {
    background-image: url('/static/image/login_bg.jpg'); /* stavi tvoju login sliku */
}

/* pozadina za HOME / logovani deo */
.page-background.main-background {
    background-image: url('/static/image/home_bg.jpg');  /* stavi home sliku; može ista kao login za početak */
}

/* =========================
   LOGIN STRANICA
   ========================= */

.login-body {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.login-wrapper {
    display: flex;
    justify-content: flex-end;  /* Pomera login na desnu stranu */
    align-items: center;
    height: 110vh;
    padding-right: 200px;  /* Podešavanje razmaka od desne ivice */
    box-sizing: border-box;
}
.login-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
}

/* bela kartica u sredini */
.login-card-clean {
    background-color: rgba(255, 255, 255, 0.85);
}

.login-logo {
    text-align: center;
    margin-bottom: 12px;
}

.login-logo img {
    max-height: 120px; /* veći logo, kako si tražio */
}

.login-title {
    text-align: center;
    margin: 0 0 22px;
    font-size: 20px;
    font-weight: 600;
    color: #222;
}

/* poruke o greškama */
.login-messages {
    margin-bottom: 15px;
}

.login-message {
    background-color: #ffe5e5;
    border: 1px solid #ffb3b3;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 13px;
    color: #660000;
}

/* input polja */
.login-form .form-group {
    margin-bottom: 14px;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #d0d0d0;
    box-sizing: border-box;
    outline: none;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.15);
}

/* plavo dugme "Prijavi se" */
.login-button-primary {
    width: 100%;
    padding: 10px 0;
    font-size: 15px;
    border-radius: 6px;
    border: none;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    margin-top: 6px;
    font-weight: 500;
}

.login-button-primary:hover {
    filter: brightness(1.05);
}


/* =========================
   GORNJA TRAKA (HOME)
   ========================= */

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(to bottom, #111 0%, #000 100%);
    border-bottom: 1px solid #333;
    z-index: 10;
}

.top-bar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

/* logo levo – sada radimo sa <img> */
.top-logo img {
    height: 150px;
}

/* MENI U SREDINI – centriran između logotipa i user info-a */
.top-menu {
    flex: 1;                         /* zauzmi sav prostor između loga i usera */
    display: flex;
    justify-content: center;         /* centriraj meni */
}

.top-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.top-menu a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: #f5f5f5;
}

.top-menu a:hover {
    color: #e61b23;
}

/* USER DESNO */
.top-user {
    text-align: right;
    font-size: 30px;
    min-width: 180px;
}

.top-user-level {
    color: #999;
    font-size: 11px;
}

/* PROFIL + LOGOUT dugmad – ista logika, samo razmak za Profil */
.profile-btn,
.logout-btn {
    display: inline-block;
    margin-top: 6px;
    padding: 8px 20px;
    border-radius: 6px;
    border: 2px solid #777;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    background-color: rgba(255,255,255,0.05);
}

/* malo razdvajanje između profil i logout */
.profile-btn {
    margin-right: 10px;
}

.profile-btn:hover,
.logout-btn:hover {
    background-color: rgba(255,255,255,0.15);
    border-color: #aaa;
}

/* sadržaj ispod trake */
.page-content {
    padding: 90px 30px 30px 30px; /* 90px da ne udje pod traku */
}

/* HOME tekst (koristi se za naslove na drugim stranicama ako treba) */
.home-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.home-subtitle {
    font-size: 14px;
    color: #ccc;
}

/* === PRVA PROMENA LOZINKE – OVERLAY === */

.password-change-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);  /* zatamni ekran */
    z-index: 20;
}

.password-change-card {
    width: 100%;
    max-width: 420px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 28px 28px 24px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.6);
    color: #222;
}

.password-change-card h1 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 600;
}

.password-change-text {
    margin: 0 0 18px;
    font-size: 14px;
    color: #555;
}

/* PROFIL KARTICA */

.profile-card {
    background-color: rgba(0,0,0,0.7);
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    margin: auto;
    border: 1px solid rgba(255,255,255,0.1);
}

.profile-card h1 {
    margin-top: 0;
    margin-bottom: 20px;
}

.profile-card .form-group {
    margin-bottom: 15px;
}

.profile-card .form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #ddd;
}

.profile-card input,
.profile-card select {
    width: 100%;
    padding: 10px 12px;
    background: #111;
    border: 1px solid #444;
    border-radius: 6px;
    color: white;
    box-sizing: border-box;
}

.profile-card input:focus,
.profile-card select:focus {
    border-color: #007bff;
}

/* =========================
   HOME – POČETNI EKRAN
   (dizajn kao na slici)
   ========================= */

.home-hero {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    gap: 40px;
    margin: 40px 60px;
    color: #ffffff;
}

.home-left {
    max-width: 800px;
}

.home-logo {
    height: 70px;
    margin-bottom: 20px;
}

.home-title {
    font-size: 30px;
    margin-bottom: 20px;
    color: #ffffff;
}

.home-left p {
    font-size: 22px;      /* ⇐ ovde menjaš veličinu teksta */
    line-height: 1.8;
    margin-bottom: 12px;
}

.home-list {
    margin: 10px 0 20px 20px;
    padding: 0;
}

.home-list li {
    font-size: 20px;      /* ⇐ veličina za bullet liste */
    line-height: 1.8;
    margin-bottom: 6px;
}

/* DESNO – slike */

.home-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-end;
    justify-content: flex-start;
}

.home-photo {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    object-fit: cover;
}

/* Donja linija + URL */

.home-footer-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 60px 20px;
    color: #ffffff;
    font-size: 16px;
}

.home-line {
    flex-grow: 1;
    border-bottom: 2px solid #e63737; /* crvena linija */
    margin-right: 20px;
}

.home-url {
    white-space: nowrap;
}

/* =========================
   UPUTSTVA / TUTORIJALI
   ========================= */

.tutorials-wrapper {
    max-width: 1400px;
    margin: 40px auto 60px auto;
    text-align: center;
}

/* header box za naslov + podnaslov */
.tutorials-header {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.65);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    margin-bottom: 30px;
}

.tutorials-title {
    font-size: 36px;
    margin: 0;
    color: #ffffff;
}

.tutorials-subtitle {
    font-size: 24px;
    margin: 4px 0 0 0;
    color: #f0f0f0;
}

.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.tutorial-card {
    background-color: rgba(255,255,255,0.98);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    padding: 20px;
    text-align: left;
    color: #222;
}

.tutorial-card-title {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: 600;
}

.tutorial-card-sector {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.tutorial-card-desc {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 14px;
}

.tutorial-media {
    margin-top: 10px;
    border-radius: 12px;
    overflow: hidden;
}

/* lokalni video / slika */
.tutorial-media video,
.tutorial-media img {
    width: 100%;
    display: block;
}

/* YouTube iframe */
.tutorial-media-youtube iframe {
    width: 100%;
    height: 260px;
    border: none;
    display: block;
}

/* =========================
   Dugmići
   ========================= */

.btn-primary,
.btn-secondary,
.btn-danger,
.btn-edit {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #333;
    border: 1px solid #b0b0b0;
}

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

.btn-danger {
    background-color: #d9534f;
    color: #fff;
}

.btn-danger:hover {
    filter: brightness(1.05);
}

/* zeleno EDIT dugme */
.btn-edit {
    background-color: #28a745 !important;
    color: #fff !important;
    border: none !important;
}
.btn-edit:hover {
    filter: brightness(1.05);
}

/* layout za formu tutorijala */

.tutorial-form-wrapper {
    max-width: 800px;
    margin: 40px auto;
    background-color: rgba(0,0,0,0.7);
    padding: 25px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.tutorial-form-wrapper h1 {
    margin-top: 0;
    margin-bottom: 20px;
}

.tutorial-form .form-group {
    margin-bottom: 15px;
}

.tutorial-form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.tutorial-form input[type="text"],
.tutorial-form input[type="url"],
.tutorial-form textarea,
.tutorial-form select {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #444;
    background-color: #111;
    color: #fff;
    box-sizing: border-box;
}

.tutorial-form textarea {
    min-height: 80px;
}

.tutorial-card-actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.tutorials-actions {
    margin-bottom: 20px;
    text-align: right;
}

/* =========================
   ANKETE – FORMA
   ========================= */

.survey-form-wrapper {
    max-width: 900px;
    margin: 80px auto 40px auto;      /* centriraj i spusti ispod menija */
    background: rgba(0,0,0,0.80);     /* tamna poluprovidna kartica */
    padding: 30px 35px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    box-shadow: 0 12px 35px rgba(0,0,0,0.6);
}

.survey-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
    text-align: left;
}

.survey-form .form-group {
    margin-bottom: 16px;
}

.survey-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

/* inputi i textarea */

.survey-form input[type="text"],
.survey-form input[type="datetime"],
.survey-form input[type="datetime-local"],
.survey-form textarea {
    width: 100%;
    padding: 9px 11px;
    border-radius: 8px;
    border: 1px solid #555;
    background-color: #111;
    color: #fff;
    box-sizing: border-box;
}

.survey-form textarea {
    min-height: 80px;
}

/* checkboks "Aktivna" u jednom redu */
.inline-group label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

/* datumi u dva stupca */
.inline-two {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.inline-two > div {
    flex: 1 1 200px;
}

/* help tekst za pitanja */
.survey-help {
    margin-top: 6px;
    font-size: 12px;
    color: #ddd;
    text-align: left;
}

/* dugmad */
.survey-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}
/* Posebno dugme za "Rezultati" ankete – da se jasno vidi na beloj kartici */
.btn-results {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;

    background-color: #17a2b8; /* tirkizna / info boja */
    color: #ffffff;
    margin-top: 8px;
}

.btn-results:hover {
    filter: brightness(1.08);
}

/* Settings page – koristi postojeći tutorijali stil, samo malo doterivanje  */

.settings-wrapper {
    /* opcionalno, ako želiš da se razlikuje naslov */
}

.settings-grid {
    /* ako već postoji .tutorials-grid, ovo može i da se preskoči,
       ali ovako smo sigurni da lepo izgleda i kad je manje kartica */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.settings-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.settings-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.tutorial-card-desc {
    margin-top: 0.25rem;
    font-size: 0.9rem;
    opacity: 0.85;
}
/* Settings kartice – tekst da bude taman, vidljiv na beloj pozadini */

.settings-card .tutorial-card-title {
    color: #333;
    font-weight: 600;
}

.settings-card .tutorial-card-desc {
    color: #555;
    opacity: 1;        /* skini izbledelost */
}
/* ---- SETTINGS TABLE / LIST STYLING ---- */

.table-container {
    margin-top: 20px;
}

.tutorials-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.tutorials-table thead {
    background: #f5f5f5;
}

.tutorials-table th,
.tutorials-table td {
    padding: 12px 16px;
    text-align: left;
}

.tutorials-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.tutorials-table .empty-row {
    text-align: center;
    color: #777;
    padding: 20px;
}

/* Action links */
.action-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.action-link:hover {
    text-decoration: underline;
}

.action-link.delete {
    color: #d9534f;
}

/* Settings page – koristi postojeći tutorijali stil, samo malo doterivanje  */

.settings-wrapper {
    /* ovde po potrebi još nešto posebno za settings */
}

.settings-grid {
    /* ako već postoji .tutorials-grid, ovo može i da se preskoči,
       ali ovako smo sigurni da lepo izgleda i kad je manje kartica */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.settings-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.settings-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.tutorial-card-desc {
    margin-top: 0.25rem;
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Settings kartice – tekst da bude taman, vidljiv na beloj pozadini */
.settings-card .tutorial-card-title {
    color: #333;
    font-weight: 600;
}

.settings-card .tutorial-card-desc {
    color: #555;
    opacity: 1;        /* skini izbledelost */
}

/* ---- SETTINGS TABLE / LIST STYLING ---- */

.table-container {
    margin-top: 20px;
}

.tutorials-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.tutorials-table thead {
    background: #f5f5f5;
}

.tutorials-table th,
.tutorials-table td {
    padding: 12px 16px;
    text-align: left;
    color: #333;          /* <<< TAMAN TEKST */
    font-size: 14px;
}

.tutorials-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.tutorials-table .empty-row {
    text-align: center;
    color: #777;
    padding: 20px;
}

/* Action links */
.action-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.action-link:hover {
    text-decoration: underline;
}

.action-link.delete {
    color: #d9534f;
}

/* ---- SETTINGS FORM STYLING ---- */

.settings-form {
    max-width: 700px;
    margin: 30px auto 60px;          /* centriraj formu i spusti je malo */
    padding: 24px 28px;
    background: rgba(255,255,255,0.97);  /* beli panel */
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.35);
    color: #222;                     /* tamni tekst unutar forme */
}

.settings-form .form-group {
    margin-bottom: 14px;
}

.settings-form label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    color: #333;
}

.settings-form input,
.settings-form select,
.settings-form textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.settings-form .help-text {
    display: block;
    margin-top: 2px;
    font-size: 0.8rem;
    color: #777;
}

.settings-form .field-error {
    margin-top: 2px;
    font-size: 0.8rem;
    color: #d9534f;
}

/* SETTINGS HEADER – na tamnoj traci želimo beli tekst */
.settings-wrapper .tutorials-title,
.settings-wrapper .tutorials-subtitle {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* =========================
   ZAHJEVI ZA GODIŠNJI ODMOR
   ========================= */

.requests-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    color: #f5f5f5;
}

.requests-header {
    background: rgba(0, 0, 0, 0.65);
    border-radius: 18px;
    padding: 20px 28px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.requests-header h1 {
    margin: 0 0 4px;
    font-size: 32px;
    font-weight: 700;
}

.requests-header p {
    margin: 0;
    font-size: 16px;
    opacity: 0.85;
}

.requests-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.requests-card {
    background: rgba(0, 0, 0, 0.72);
    border-radius: 18px;
    padding: 20px 24px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    text-align: left;
}

.requests-card h2 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 600;
}

/* forma */

.requests-form .form-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.requests-form label {
    font-size: 14px;
    opacity: 0.9;
}

.requests-form input[type="number"],
.requests-form input[type="date"] {
    padding: 6px 8px;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 14px;
}

.requests-form input[type="number"]:focus,
.requests-form input[type="date"]:focus {
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.5);
}

.requests-form .form-actions {
    margin-top: 10px;
}

/* dugmad */

.btn-primary,
.btn-small,
.btn-success,
.btn-danger {
    cursor: pointer;
    border: none;
}

.btn-small {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
}

.btn-success {
    background: #28a745;
    color: #fff;
}

.btn-danger {
    background: #dc3545;
    color: #fff;
}

.btn-success:hover {
    filter: brightness(1.1);
}

.btn-danger:hover {
    filter: brightness(1.1);
}

/* tabele */

.table-wrapper {
    overflow-x: auto;
    margin-top: 8px;
}

.requests-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.requests-table thead th {
    text-align: left;
    padding: 8px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.requests-table tbody td {
    padding: 6px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    vertical-align: middle;
}

.requests-table tbody tr:last-child td {
    border-bottom: none;
}

.requests-table .empty-row {
    text-align: center;
    opacity: 0.8;
}

/* inline forme u ćelijama */

.inline-form {
    display: inline-block;
    margin: 0 2px;
}

/* mobilno poravnanje */

@media (max-width: 768px) {

    .home-hero {
        grid-template-columns: 1fr;
        margin: 20px;
    }

    .home-right {
        align-items: center;
    }

    .home-footer-line {
        flex-direction: column;
        align-items: flex-start;
        margin: 20px;
    }

    .home-line {
        width: 100%;
        margin: 0 0 10px 0;
    }

    .requests-wrapper {
        padding: 20px 12px 60px;
    }

    .requests-card {
        padding: 16px 14px 20px;
    }

    .requests-header h1 {
        font-size: 24px;
    }
}

.home-download-qr{
    margin-top: 16px;
    text-align: center;
}

/* QR = 50% širine u odnosu na desne slike (koje su width:100%) */
.home-download-qr .qr-image{
    width: 100%;
    max-width: 300px;   /* da ne poraste previše na velikim ekranima */
    min-width: 120px;   /* da ne bude premalo na manjim ekranima */
    height: auto;
    display: inline-block;
    margin-bottom: 8px;
    border-radius: 12px; /* opciono, da se uklopi sa slikama */
    box-shadow: 0 6px 16px rgba(0,0,0,0.25); /* opciono */
}

.home-download-qr .qr-text{
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}


.tutorial-form-wrapper .form-group {
    margin-bottom: 18px; /* veći razmak između pitanja */
}

.tutorial-form-wrapper .survey-subtitle {
    font-size: 20px;      
    color: #ff4d4d;          
    margin-bottom: 25px;  
    line-height: 1.6;     
}

.btn-delete {
    background-color: #e61b23;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.btn-delete:hover {
    background-color: #c4161d;
}


