/* Button styles for primary actions */
/* all my page list style*/
.btn-primary {
    background-color: #007bff;
    border: 1px solid #007bff;
  }
  .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
  }
  
  /* Button styles for info, warning, and danger actions */
  .btn-info,
  .btn-warning,
  .btn-danger {
    padding: 6px 10px;
    border-radius: 25px;
    font-size: 12px;
    transition: all 0.3s ease-in-out;
  }
  .btn-info:hover,
  .btn-warning:hover,
  .btn-danger:hover {
    transform: scale(1.05);
  }
  
  /* Pagination button styles */
  .pagination .page-link {
    padding: 6px 12px;
    background: #007bff;
    color: white;
    border: 1px solid #007bff;
    border-radius: 25px;
  }
  .pagination .page-item.active .page-link {
    background: #0056b3;
  }
  
  /* Custom scrollbar for tables */
  .custom-scrollbar {
    max-height: 400px;
    overflow-y: auto;
  }
  
  /* Hover effect for table rows */
  .table-striped tbody tr:hover {
    background-color: transparent;
  }
  
  /* Style for form control inputs */
  .role-form-control {
    border-radius: 25px;
    width: 250px;
  }
  
  /* Secondary button styles */
  .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
  }
  
  /* Image thumbnail styles for user profile images */
  .img-thumbnail {
    width: 30px;
    height: 30px;
  }
  
  /* Row height adjustment */
  tr {
    height: 40px;
  }
  
  /* Padding for table cells */
  td,
  th {
    padding: 8px 10px;
  }
  
  /* Border styles for various elements */
  .border-bottom-primary {
    border-bottom: 2px solid #007bff;
  }
  .border-bottom-secondary {
    border-bottom: 2px solid #6c757d;
  }
  
  /* Role name cell styles in the user table */
  .role-name-cell {
    font-size: 16px;
    font-weight: 500;
    color: #343a40;
    padding: 10px 0;
    text-align: center;
    margin: 0;
    min-width: 150px;
  }
  
  /* Border colors for specific row statuses */
  .border-bottom-info {
    border-bottom: 2px solid #17a2b8;
  }
  .border-bottom-warning {
    border-bottom: 2px solid #ffc107;
  }
  .border-bottom-danger {
    border-bottom: 2px solid #dc3545;
  }
  .border-bottom-light {
    border-bottom: 2px solid #f8f9fa;
  }

/* vist our web custom-btn-style Button style colors & layout*/
  .custom-btn-style {
    background-color: #37726d; /* Modern green color */
    color: white;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 30px; /* Rounded button */
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .custom-btn-style:hover {
    background-color: #2d6661; /* Darker green on hover */
    transform: translateY(-3px); /* Lift effect */
  }
  
  .custom-btn-style i {
    margin-right: 10px;
  }
  
/*show pages styles*/
  .custom-btn-style {
    background-color: #007bff; /* Isf primary color */
    border-radius: 25px;       /* Rounded corners */
    padding: 12px 20px;        /* Increased padding for a bigger button */
    text-align: center;        /* Center the text */
    font-size: 18px;           /* Bigger font for better readability */
  }
  .custom-btn-style:hover {
    background-color: #0056b3; /* Darker blue on hover */
  }
  

  .container-fluid {
    margin-top: 20px; /* spacing from the top */
  }

  .card {
    background: #ffffff; /* Light background for the card */
    border-radius: 10px;
    border: none;
  }

  .card-header {
    background: #81C784; /* Soft green color for header */
    color: #1B5E20; /* Dark green text */
    border-radius: 10px 10px 0 0;
  }

  .card-header-right {
    float: right;
  }

  .btn-outline-secondary {
    border-radius: 25px;
    font-size: 14px;
  }

  .btn-warning {
    background-color: #FFC107;
    border: none;
    color: white;
  }

  .btn-warning:hover {
    background-color: #FFB300;
  }

  .btn-primary {
    background-color: #007BFF;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
  }

  .btn-primary:hover {
    background-color: #0056B3;
  }

  .btn-lg {
    font-size: 16px;
    padding: 10px 20px;
  }

  .rounded-pill {
    border-radius: 50px;
  }

  .font-weight-bold {
    font-weight: 600;
  }

  .shadow-lg {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .text-dark {
    color: #212121; /* Dark gray for better readability */
  }

  .row {
    margin-bottom: 20px;
  }

  .pills-blogger {
    padding: 20px;
  }

  .blog-content {
    padding-left: 20px;
  }

  .blog-img {
    max-width: 150px; /* Set image size */
    border-radius: 5px;
  }

  .f-m-light {
    font-family: 'Roboto', sans-serif;
  }

  .card-footer {
    background-color: #ffffff; /* Light footer background */
    color: #212121; /* Dark text */
    padding: 15px;
  }

  .card-footer h6 {
    margin: 0;
    font-size: 16px;
  }


/*Dashboard pages styles*/
/* Quick Actions */
.quick-actions-bar {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.action-btn {
  background: linear-gradient(to right, #3e94db, #1b9fa3);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  transition: background 0.3s ease, transform 0.2s ease;
}

.action-btn:hover {
  background: linear-gradient(to right, #4f46e5, #4338ca);
  transform: translateY(-2px);
}

/* Stats Cards */
.modern-mini-stats {
  display: flex;
  gap: 16px;
  margin: 20px 0;
  flex-wrap: wrap;
  justify-content: space-between;
}

.mini-card {
  flex: 1 1 23%;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease;
}

.mini-card:hover {
  transform: translateY(-4px);
}

.mini-icon {
  font-size: 30px;
  margin-right: 14px;
}

.mini-details h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #111827;
}

.mini-details p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #6b7280;
}

/* Panels for Insights */
.info-panels {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.info-card {
  flex: 1 1 48%;
  padding: 18px;
  border-radius: 10px;
  background: #f9fafb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-card h4 {
  margin-bottom: 8px;
  font-size: 16px;
  color: #111827;
}

.info-card p {
  font-size: 14px;
  color: #374151;
}

.info-card.alert {
  border-left: 4px solid #f59e0b;
}

.info-card.success {
  border-left: 4px solid #10b981;
}

/* Backgrounds */
.bg-blue { background: linear-gradient(145deg, #e0ecff, #d6e3fc); }
.bg-green { background: linear-gradient(145deg, #d1fce4, #b2f5d5); }
.bg-yellow { background: linear-gradient(145deg, #fff8dc, #ffe8a3); }
.bg-purple { background: linear-gradient(145deg, #f3e8ff, #dfc7fd); }

/* Responsive */
@media (max-width: 768px) {
  .mini-card, .info-card {
    flex: 1 1 100%;
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
