/* Ümumi Səhifə Ayarları */
body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    /* Display: flex-i sildim ki, naviqasiya paneli ən yuxarıda qala bilsin */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

/* YENİ: Ana Səhifə Naviqasiya Paneli Stilləri */
.top-nav-bar {
    background: white;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 100%;
    position: relative;
    z-index: 1000;
}

    .top-nav-bar .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.btn-back-home {
    color: #5d2e8e; /* Sənin proqramın bənövşəyi rəngi */
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

    .btn-back-home:hover {
        background: rgba(93, 46, 142, 0.08);
        border-color: #5d2e8e;
        color: #5d2e8e;
        transform: translateX(-3px); /* Sola doğru yüngül sürüşmə effekti */
    }

/* Kart Dizaynı */
.container-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 90%; /* Mobil cihazlar üçün uyğunluq */
    margin: 40px auto; /* Kartı mərkəzləşdirir */
}

/* Proqres Bar Stilləri */
.progress-custom {
    height: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* Düymə Stilləri */
.btn-primary-custom {
    background-color: #4e73df;
    border: none;
    padding: 12px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    width: 100%;
    transition: 0.3s;
    cursor: pointer;
}

    .btn-primary-custom:hover {
        background-color: #2e59d9;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(78, 115, 223, 0.3);
    }

/* Köməkçi Klasslar */
.text-primary-brand {
    color: #5d2e8e !important;
}

.section-title {
    color: #5d2e8e;
    border-bottom: 2px solid #e9b213;
    padding-bottom: 5px;
    margin-bottom: 15px;
    display: block;
    font-weight: bold;
}
