﻿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;
}



/* تنسيق الصورة في الـ Header */
.header-logo {
    height: 50px;
    transition: all 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
    filter: brightness(1.1);
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.2));
}

/* تنسيق عنصر Software في الـ Navbar */
.nav-item.mx-5 .nav-link {
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-item.mx-5 .nav-link:hover {
    color: #007bff !important;
    transform: translateY(-2px);
}

.nav-item.mx-5 .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #007bff;
    transition: width 0.3s ease;
}

.nav-item.mx-5 .nav-link:hover::after {
    width: 100%;
}

.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 20px 0;
}

.search-select {
    width: 150px !important;
}

.search-btn {
    width: 80px !important;
    height: 40px !important;
    padding: 0;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f8f9fa;
    padding: 10px 0;
    text-align: center;
}

.container {
    display: flex;
    justify-content: center; /* لتوسيط العناصر أفقيًا */
    align-items: center; /* لتوسيط العناصر عموديًا (اختياري) */
    gap: 10px; /* مسافة بين العناصر */
}