.calculator-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 2rem auto;
    color: black;
    flex-grow: 0;
    width: 100%;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}
.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.375rem;
    background-color: #F9FAFB;
    transition: border-color 0.15s ease-in-out;
}
.form-control:focus {
    outline: none;
    border-color: #6366F1;
    box-shadow: 0 0 0 2px #6366F1;
}
.btn-calculate {
    background-color: #4F46E5;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.15s ease-in-out;
    width: 100%;
}
.btn-calculate:hover {
    background-color: #4338CA;
}
.results {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #F3F4F6;
    border-radius: 0.375rem;
}
.result-item {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #E5E7EB;
}
.result-item:last-child {
    border-bottom: none;
}
.total {
    font-weight: 700;
    color: #1F2937;
    font-size: 1.125rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #E5E7EB;
}

.page-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.ad-space {
    display: none; /* Hidden by default on mobile */
    width: 160px; /* Standard display ad width */
    min-height: 600px; /* Standard skyscraper ad height */
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-top: 2rem;
}

/* Show ads only on desktop */
@media (min-width: 1200px) {
    .ad-space {
        display: block;
        position: sticky;
        top: 2rem;
    }
}


/* Dodajte ovo u vaš postojeći CSS fajl */

.info-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.info-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.info-intro {
    color: #4a5568;
    margin-bottom: 1rem;
}

.info-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.info-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.info-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4F46E5;
    font-weight: bold;
}

.info-costs {
    color: #4a5568;
    margin-bottom: 1rem;
}

.info-costs strong {
    color: #2d3748;
}

.info-note {
    font-size: 0.875rem;
    color: #718096;
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
    margin-top: 1rem;
}

.hidden {
    display: none;
}