/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
 
body {
        background: linear-gradient(120deg, #f3f4f6 0%, #e0f7fa 100%);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      }

      .navbar {
        background: linear-gradient(to right, #3b82f6, #06b6d4);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      }

      .navbar-brand {
        font-weight: 700;
        font-size: 1.6rem;
        color: #fff !important;
        display: flex;
        align-items: center;
      }

      .navbar-brand span {
        margin-left: 0.5rem;
      }

      .nav-link, .dropdown-menu .dropdown-item {
        transition: all 0.3s ease-in-out;
      }

      .nav-link:hover, .dropdown-menu .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 0.5rem;
      }

      .alert {
        border-radius: 1rem;
        box-shadow: 0 6px 12px rgba(0,0,0,0.05);
      }

      .sidebar-modern {
        background: #ffffff;
        backdrop-filter: blur(5px);
        box-shadow: 2px 0 10px rgba(0,0,0,0.05);
        border-right: 1px solid #e0e0e0;
        min-height: 100vh;
        padding-top: 2rem;
      }

      .sidebar-modern .nav-link {
        color: #333;
        font-weight: 500;
        padding: 0.75rem 1rem;
        margin-bottom: 0.5rem;
        border-radius: 0.75rem;
        transition: 0.3s;
      }

      .sidebar-modern .nav-link:hover,
      .sidebar-modern .nav-link.active {
        background-color: #f1f5f9;
        transform: scale(1.02);
      }

      .card {
        border: none;
        border-radius: 1rem;
        backdrop-filter: blur(6px);
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease-in-out;
      }

      .card:hover {
        transform: scale(1.01);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
      }

      .footer {
        background: #f8fafc;
        font-size: 0.95rem;
        border-top: 1px solid #dee2e6;
        padding: 1.5rem 0;
      }

      .btn-twitter {
        background-color: #1da1f2;
        color: white;
        border: none;
      }

      .btn-twitter:hover {
        background-color: #0d8ddb;
      }

      .btn-outline-primary, .btn-outline-danger, .btn-outline-success, .btn-outline-secondary {
        border-radius: 1rem;
      }

      .btn-close {
        float: right;
      }
      .navbar {
        background-color: #1DA1F2;
      }
      
      .text-title{
        color: #1DA1F2;
      }
      .navbar-brand, .nav-link {
        color: black !important;
      }

      .footer {
        background-color: #f1f1f1;
        color: #555;
        padding: 15px 0;
        text-align: center;
        margin-top: auto;
        font-size: 14px;
      }

      .container {
        max-width: 720px;
      }

      .btn-twitter {
        background-color: #1DA1F2;
        color: white;
      }

      .btn-twitter:hover {
        background-color: #0d8ddb;
        color: white;
      }

        .sidebar-modern {
    background: #f8f9fa;
    border-right: 1px solid #dee2e6;
  }

  .sidebar-modern .nav-link {
    font-size: 1.1rem;
    padding: 0.75rem 0.5rem;
    color: #333;
    text-align: center;
  }

  .sidebar-modern .nav-link:hover,
  .sidebar-modern .nav-link.active {
    background-color: #e2e6ea;
    color: #0d6efd;
    border-radius: 0.5rem;
  }

  .sidebar-modern .profile-pic {
    width: 60px;
    height: 60px;
    object-fit: cover;
  }

  @media (min-width: 768px) {
    .sidebar-modern .nav-label {
      display: block;
      font-size: 0.75rem;
    }
  }

  @media (max-width: 767.98px) {
    .sidebar-modern {
      display: none;
    }
  }
  .profile-pic {
    width: 60px;
    height: 60px;
    object-fit: cover;
  }
  .sidebar-modern {
  background: linear-gradient(to bottom right, #ffffff, #f8fafc);
  border-right: 1px solid #e5e7eb;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.03);
  z-index: 1030;
}

.fancy-link {
  color: #333;
  font-weight: 500;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 0.75rem;
  transition: all 0.25s ease-in-out;
}

.fancy-link:hover {
  background-color: #e0f2fe;
  color: #0d6efd;
  transform: translateX(4px);
}

.fancy-link.active {
  background-color: #dbeafe;
  font-weight: bold;
  color: #1d4ed8;
}
.modal-content.bg-black {
  background: linear-gradient(145deg, #0f172a, #1e293b);
  color: #fff;
  border-radius: 0.75rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100% 100%;
  width: 2.5rem;
  height: 2.5rem;
}
.card {
  animation: fadeInUp 0.6s ease-in-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-primary {
  background: linear-gradient(to right, #6a11cb, #2575fc);
  border: none;
}
.card {
  animation: fadeInUp 0.5s ease-in-out;
}

