﻿/**
 * Scientific Form Page Styles
 */

/* Section margin and padding adjustments */
.hero-sec {
    margin-bottom: 0;
    padding-bottom: 0;
}

.com-parti-sec {
    margin-top: 0;
    padding-top: 0 !important; /* Override the py-5 class */
}

.com-parti-sec .container {
    padding-top: 0;
    padding-bottom: 3rem;
}

/* Breadcrumb adjustments */
.breadcrumb {
    margin-bottom: 0;
}

/* Responsive styles for breadcrumb */
@media (max-width: 768px) {
    .breadcrumb-item {
        font-size: 0.875rem; /* 14px */
    }

    .breadcrumb-item a {
        font-size: 0.875rem; /* 14px */
    }
}

@media (max-width: 576px) {
    .breadcrumb-item {
        font-size: 0.75rem; /* 12px */
    }

    .breadcrumb-item a {
        font-size: 0.75rem; /* 12px */
    }
}

/* Select2 custom styling */
.arrow-custom-design {
    /* Custom styles for select arrow */
}

.select-custom-design {
    /* Custom styles for select dropdown */
}

/* Form validation styles */
.text-danger {
    color: #dc3545 !important;
}

/* RTL specific adjustments (for Arabic) */
[dir="rtl"] .form-label {
    text-align: right;
}

[dir="rtl"] .edu-nav-body {
    text-align: right;
}

/* Ensure select2 dropdown is scrollable with max height */
.select2-dropdown-scrollable {
    max-height: 300px;
    overflow-y: auto;
}