/*
Theme Name: Alone Child
Theme URI: https://wordpress.org/themes/alone/
Author: Bearsthemes
Template: alone
Version: 7.0
Text Domain: alone
*/

body a:hover, body a:focus { text-decoration: none; }

/* --- GLAVNI KONTEJNER: Forsira GRID u 3 kolone --- */
.opstine-grid {
    display: grid !important; /* !important je ovde da preglasa potencijalna pravila teme */
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    padding: 30px 0;
    max-width: 1200px; /* Možeš podesiti širinu po želji */
    margin: 0 auto;
    width: 100%;
}

/* Prilagođavanje za tablete (2 kolone) */
@media (max-width: 992px) {
    .opstine-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Prilagođavanje za mobilne telefone (1 kolona) */
@media (max-width: 768px) {
    .opstine-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- KARTICA (DOC-CARD) --- */
.doc-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #f2f2f2;
    transition: transform 0.2sease, box-shadow 0.2sease;
    display: flex;
    flex-direction: column; /* Elementi u bodi-ju idu odozgo na dole */
}

.doc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

/* --- ZAGLAVLJE KARTICE (Ikona i Bedž) --- */
.doc-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.doc-icon-wrap {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-grb-img {
    max-width: 100%;
    height: auto;
}

/* LGBT Krug */
.doc-fallback-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: block;
    border: 1px solid rgba(0,0,0,0.05);
}

/* BEDŽ STATUS (DOSTUPNO / ČEKA) */
.doc-status-badge {
    font-size: 10px;
    font-weight: bold;
    padding: 5px 11px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.status-dostupno { background: #e8f5e9; color: #1b5e20; }
.status-ceka { background: #fff8e1; color: #f9a825; }

/* --- BODI KARTICE (Tekst) --- */
.doc-card-body {
    flex-grow: 1; /* Da bodi popuni prostor do footera */
    display: flex;
    flex-direction: column;
}

.doc-card-body h3 {
    margin: 0 0 8px 0 !important;
    font-size: 20px !important;
    color: #333;
    line-height: 1.2;
}

.regija-text {
    font-size: 12px;
    color: #888;
    display: block;
    margin-bottom: 15px;
}

/* --- FOOTER KARTICE (Dostupno info i Vidi obrasce) --- */
.doc-footer {
    display: flex !important;
    justify-content: space-between !important; /* Forsira ih na suprotne krajeve */
    align-items: center !important;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    margin-top: auto; /* Gura footer na dno kartice */
    width: 100%;
}

.doc-avail-text {
    font-weight: 600;
    font-size: 14px;
    color: #444;
}

.doc-avail-text.siva {
    color: #aaa;
    font-weight: normal;
}

/* Dugme "Vidi obrasce" */
.doc-expand-btn {
    color: #d32f2f !important;
    text-decoration: none !important;
    font-weight: bold !important;
    font-size: 14px !important;
    display: flex;
    align-items: center;
}

.doc-expand-btn .arrow {
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.3s;
    font-size: 10px;
}

/* --- LISTA FAJLOVA (Skrivena dok se ne klikne) --- */
.doc-files-list {
    margin-top: 15px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px 18px;
    list-style: none !important;
}

.doc-files-list li {
    padding: 9px 0;
    border-bottom: 1px dashed #eee;
    margin: 0 !important;
}

.doc-files-list li:last-child { border-bottom: none; }

.doc-files-list li a {
    color: #333;
    font-size: 13px;
    text-decoration: none;
    display: block;
}

.doc-files-list li a:hover { color: #d32f2f; }