/* Index specifični stilovi - optimizirani */

/* Status sekcija */
.status-section {
    position: relative;
    z-index: 2;
}

/* Response time */
.response-time {
    background: rgba(135,206,235,0.08);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid rgba(135,206,235,0.2);
}

/* Footer */
.footer-section {
    margin-top: 60px;
    padding: 30px;
    background: rgba(0,0,0,0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(135,206,235,0.2);
}

/* Section divider */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(135,206,235,0.5), transparent);
    margin: 50px 0;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 4px;
    background: #87ceeb;
    border-radius: 2px;
}

/* Floating Action Button - jednostavan */
.fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(45deg, #87ceeb, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(135, 206, 235, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(135, 206, 235, 0.5);
    color: white;
}

/* Responsive poboljšanja */
@media (max-width: 768px) {
    .section-divider {
        margin: 30px 0;
    }
    
    .fab {
        bottom: 15px;
        right: 15px;
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .section-divider {
        margin: 20px 0;
    }
}
