﻿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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.btn-custom {
    background: linear-gradient(90deg, #4e54c8, #8f94fb);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

    .btn-custom:hover {
        background: linear-gradient(90deg, #3e44b0, #7c82f0);
        transform: translateY(-2px);
        color: #fff;
    }
.btn-custom {
    background: linear-gradient(90deg, #4e54c8, #8f94fb);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

    .btn-custom:hover {
        background: linear-gradient(90deg, #3e44b0, #7c82f0);
        transform: translateY(-2px);
        color: #fff;
    }


/* Nav düymələrinin ümumi görünüşü */
.navbar-custom .nav-link {
    font-weight: 600;
    font-size: 16px;
    padding: 10px 18px;
    margin: 4px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
}

    /* Hover effekti */
    .navbar-custom .nav-link:hover,
    .navbar-custom .nav-link.active {
        background-color: rgba(255, 255, 255, 0.25);
        color: #fff !important;
        transform: scale(1.05);
    }

    /* Iconlu link üçün spacing */
    .navbar-custom .nav-link img.bg-span {
        margin-right: 6px;
        vertical-align: middle;
    }

@media (max-width: 768px) {
    .navbar-custom .nav-link {
        text-align: center;
        width: 100%;
        margin: 2px 0;
    }
}