/* style.css - Bot Call Management System */

/* ===== VARIABLES ===== */
:root {
    --primary: #2c3e50;
    --secondary: #34495e;
    --accent: #3498db;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --gray: #95a5a6;
    --border-radius: 0.375rem;
    --box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --transition: all 0.3s ease;
  }
  
  /* ===== BASE STYLES ===== */
  * {
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
  }
  
  a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
  }
  
  a:hover {
    color: #2980b9;
  }
  
  /* ===== LOGIN PAGE STYLES ===== */
  .login-container {
    max-width: 400px;
    width: 100%;
  }
  
  .login-page {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.9)), 
                url("../dist/img/DTP Login Page.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
  }
  
  .login-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    overflow: hidden;
  }
  
  .login-card-body {
    padding: 2rem;
    background: white;
  }
  
  .login-logo {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .login-logo img {
    max-width: 75%;
    height: auto;
  }
  
  .login-logo h3 {
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 600;
  }
  
  .form-control {
    border-radius: var(--border-radius);
    padding: 5px 10px;
    border: 1px solid #ddd;
    transition: var(--transition);
  }
  
  .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
  }
  
  .btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
    padding: 0.75rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
  }
  
  .btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
  }
  
  /* ===== MAIN LAYOUT STYLES ===== */
  .wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  /* Header */
  
  .navbar {
    background-color: var(--primary);
    min-height: 100px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .navbar-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: white !important;
  }
  
  /* Sidebar */
   /* #sidebar {
    background-color: #ffffff;
    border-right: 1px solid #e5e7eb;
    width: 300px;
    min-height: calc(100vh - 72px);
    padding: 1rem 0.75rem;
  } */
  
  .nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 15px 10px;
    margin: 5px 0px;
    color: #374151;
    border-radius: 8px;
  }

  .nav-link:hover{
    background-color: #2c3e503f;
  }
  
  .nav-link i {
    font-size: 1rem;
    margin-right: 0.75rem;
  }
  
  .nav-link.active {
    background-color: #2c3e50 !important;
    color: #fff !important;
  } */
  
  /* Main Content */
  
  .main-content {
    flex: 1;
    background-color: #f5f7fa;
    padding: 1.5rem;
  }

  .breadcrumb {
    padding: 0;
    background: transparent;
    margin-bottom: 0;
  }
  
  /* Footer */
  .footer {
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 0.85rem;
  }
  
  /* ===== ALERT STYLES ===== */
  .alert {
    border: none;
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .alert-success {
    background-color: rgba(39, 174, 96, 0.15);
    color: #27ae60;
  }
  
  .alert-danger {
    background-color: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
  }
  
  .alert-warning {
    background-color: rgba(243, 156, 18, 0.15);
    color: #f39c12;
  }
  
  .alert-info {
    background-color: rgba(52, 152, 219, 0.15);
    color: #3498db;
  }
  
  /* ===== CARD STYLES ===== */
  .card {
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.card-header {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
}
  
  .card-body {
    padding: 1.5rem;
  }
  
  /* ===== TABLE STYLES ===== */
  .table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .table th {
    background-color: #f8f9fa;
    padding: 0.75rem;
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
  }
  
  .table td {
    padding: 0.75rem;
    border-bottom: 1px solid #dee2e6;
  }
  
  .table tr:hover {
    background-color: rgba(52, 152, 219, 0.05);
  }
  
  /* ===== FORM STYLES ===== */
  .form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  /* ===== BUTTON STYLES ===== */
  .btn {
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: var(--transition);
  }
  
  .btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
  }
  
  /* ===== UTILITY CLASSES ===== */
  .text-primary {
    color: var(--primary) !important;
  }
  
  .text-accent {
    color: var(--accent) !important;
  }
  
  .bg-light {
    background-color: var(--light) !important;
  }
  
  .shadow-sm {
    box-shadow: var(--box-shadow) !important;
  }
  
  .rounded {
    border-radius: var(--border-radius) !important;
  }
  
  /* ===== RESPONSIVE STYLES ===== */
  @media (max-width: 768px) {
    /* #sidebar {
      position: fixed;
      top: 56px;
      left: -250px;
      width: 250px;
      height: calc(100vh - 56px);
      z-index: 1000;
      transition: all 0.3s;
    } */
    
    /* #sidebar.active {
      left: 0;
    } */
    
    .main-content {
      width: 100%;
    }
    
    .login-card-body {
      padding: 1.5rem;
    }
  }
