/* Google Font - DM Sans */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

/* Globalni Reset za plugin */
.swc-wrapper, .swc-wrapper * {
    box-sizing: border-box;
}

:root {
    --primary-color: #007946;
    --primary-light: rgba(0, 121, 70, 0.08);
    --text-main: #414042;
    --text-muted: #71717a;
    --border-color: #e4e4e7;
    --bg-card: #ffffff;
    --transition: all 0.25s ease;
}

.swc-wrapper {
    max-width: 800px;
    /* margin: 40px auto;  <-- Ovo je bilo za centriranje, brišemo "auto" */
    margin: 40px 0;      /* Ovo poravnava kontejner na lijevu stranu */
    font-family: 'DM Sans', sans-serif;
    padding: 0 0px;
    color: var(--text-main);
    line-height: 1.5;
}

/* --- SEARCH KONTEJNER --- */
.swc-search-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

#swc-select {
    width: 100%;
    height: 60px;
    padding: 0 55px 0 20px;
    border-radius: 14px;
    border: 2px solid var(--border-color);
    font-size: 16px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-card);
    outline: none;
    transition: var(--transition);
    display: block;
}

#swc-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.swc-search-icon {
    position: absolute;
    right: 20px;
    color: var(--primary-color);
    font-size: 18px;
    pointer-events: none;
    z-index: 5;
}

/* --- ALERT ZA SUTRAŠNJI ODVOZ --- */
.swc-alert-sutra {
    background-color: #fffbeb;
    border-left: 5px solid #f59e0b;
    color: #92400e;
    padding: 18px 20px;
    border-radius: 14px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    animation: swc-shake 0.5s ease-in-out;
}

.swc-alert-sutra i {
    font-size: 20px;
    color: #f59e0b;
}

/* --- KARTICA SA REZULTATIMA --- */
.swc-card {
    margin-top: 20px;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    animation: swcFadeIn 0.4s ease-out;
}

.swc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 6px;
    background: var(--primary-color);
}

.swc-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.swc-title i {
    color: var(--primary-color);
    background: var(--primary-light);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* --- INFO GRID (Desktop: 2 kolone) --- */
.swc-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.swc-info-box {
    background: #f9fafb;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.swc-info-box:hover {
    border-color: var(--primary-color);
    background: #fff;
}

.swc-label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 5px;
}

.swc-label i { color: var(--primary-color); font-size: 12px; }

.swc-value {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
}

/* --- DUGME --- */
.swc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-color) !important;
    color: #ffffff !important;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    width: 100%;
}

.swc-btn:hover {
    background: #005a34 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 121, 70, 0.2);
}

/* --- ANIMACIJE --- */
@keyframes swcFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes swc-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 600px) {
    .swc-info-grid { grid-template-columns: 1fr; }
    .swc-wrapper { padding: 0 15px; margin: 20px auto; }
    .swc-card { padding: 25px 20px; }
    .swc-title { font-size: 20px; }
    #swc-select { height: 56px; font-size: 15px; }
    .swc-alert-sutra { font-size: 14px; padding: 15px; }
}