html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* النجوم في العربي */
html[dir="rtl"] .rating {
    direction: rtl;
    flex-direction: row-reverse;
    justify-content: flex-start;
}

/* النجوم في الإنجليزي */
html[dir="ltr"] .rating {
    direction: ltr;
    flex-direction: row;
    justify-content: flex-start;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
}

    .rating input:checked ~ label,
    .rating label:hover,
    .rating label:hover ~ label {
        color: gold;
    }

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* طول الشاشة */
}

main {
    flex: 1; /* يتمدّد وياخد المساحة الفاضية */
}

.footer {
    padding: 10px 0;
    margin-top: auto; /* يخلي الفوتر ينزل تحت */
    background: #f8f9fa; /* لون بسيط */
    text-align: center;
}
