
.header-btn-add {
    display: inline-block;
    padding: 6px 14px; /* reduced size */
    border-radius: 8px; /* sharp & modern */
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    color: #fff !important;
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    box-shadow: 0 2px 6px rgba(238, 9, 121, 0.35);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Hover: glow + tiny lift */
.header-btn-add:hover {
    background: linear-gradient(135deg, #ee0979, #ff6a00);
    box-shadow: 0 4px 12px rgba(238, 9, 121, 0.55),
                0 0 10px rgba(238, 9, 121, 0.4); /* neon glow */
    transform: translateY(-1.5px) scale(1.01);
}


.header-btn-dashboard {
    display: inline-block;
    padding: 6px 14px; /* reduced size */
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    color: #fff !important;
    background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
    box-shadow: 0 2px 6px rgba(14, 165, 233, 0.35);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.header-btn-dashboard:hover {
    background: linear-gradient(135deg, #0ea5e9, #1d4ed8);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.55),
                0 0 10px rgba(14, 165, 233, 0.4); /* neon glow */
    transform: translateY(-1.5px) scale(1.01);
}


.header-btn-add:active,
.header-btn-dashboard:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35) inset;
}


.header-btn-add::before,
.header-btn-dashboard::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0) 60%
    );
    transform: skewX(-25deg);
    transition: 0.6s;
}

.header-btn-add:hover::before,
.header-btn-dashboard:hover::before {
    left: 120%;
}

/* Container */
.dashboard-actions {
  display: flex !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: stretch !important;
  margin-top: 20px !important;
}

/* Base button style */
.dashboard-btn {
  display: inline-flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 25px 60px !important; /* dashboard-sized but premium */
  border-radius: 16px !important; /* modern rounded corners */
  font-size: 18px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  text-decoration: none !important;
  color: #fff !important;
  position: relative;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none !important;
}

/* Submit Report button */
.btn-submit {
  background: linear-gradient(135deg, #7b2ff7, #f107a3);
  box-shadow: 0 4px 12px rgba(241, 7, 163, 0.35);
}

.btn-submit:hover {
  background: linear-gradient(135deg, #f107a3, #7b2ff7);
  box-shadow: 0 6px 16px rgba(241, 7, 163, 0.55),
              0 0 12px rgba(241, 7, 163, 0.4);
  transform: translateY(-2px) scale(1.02);
}

/* View Report button */
.btn-view {
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  box-shadow: 0 4px 12px rgba(238, 9, 121, 0.35);
}

.btn-view:hover {
  background: linear-gradient(135deg, #ee0979, #ff6a00);
  box-shadow: 0 6px 16px rgba(238, 9, 121, 0.55),
              0 0 12px rgba(238, 9, 121, 0.4);
  transform: translateY(-2px) scale(1.02);
}

/* Icon inside buttons */
.dashboard-btn .icon {
  font-size: 60px !important;
  margin-bottom: 12px !important;
}

/* Active press effect */
.dashboard-btn:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25) inset;
}

/* Shimmer effect */
.dashboard-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.5) 0%,
    rgba(255,255,255,0) 60%
  );
  transform: skewX(-25deg);
  transition: 0.6s;
}

.dashboard-btn:hover::before {
  left: 120%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .dashboard-btn {
    padding: 20px 45px !important;
    font-size: 16px !important;
  }
  .dashboard-btn .icon {
    font-size: 50px !important;
  }
}

@media (max-width: 480px) {
  .dashboard-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .dashboard-btn {
    width: 100% !important;
    padding: 18px 20px !important;
    font-size: 14px !important;
  }
  .dashboard-btn .icon {
    font-size: 40px !important;
  }
}

/* Premium Delete Button */
.btn-delete-admin {
    background: linear-gradient(135deg, #e74c3c, #c0392b); /* Gradient red */
    border: none;
    color: #fff !important;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px; /* Space between icon & text */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(192, 57, 43, 0.3);
}

/* Hover effect */
.btn-delete-admin:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px) scale(1.05); /* Subtle lift */
    box-shadow: 0 6px 14px rgba(192, 57, 43, 0.45);
    text-decoration: none;
}

/* Active (click) state */
.btn-delete-admin:active {
    transform: scale(0.97);
    box-shadow: 0 2px 6px rgba(192, 57, 43, 0.3) inset;
}

/* Icon styling */
.btn-delete-admin i {
    font-size: 14px;
}
/* Edit button premium */
.btn-edit-premium {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid #3498db;
    background: linear-gradient(to right, #3498db, #2980b9);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-edit-premium i {
    margin-right: 5px;
}

.btn-edit-premium:hover {
    background: linear-gradient(to right, #2980b9, #3498db);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}

.action-icon i {
    font-size: 1.8rem;   /* slightly bigger than before */
    color: #72ae44;      /* your green */
    transition: transform 0.3s ease, color 0.3s ease;
}

.action-card:hover .action-icon i {
    transform: scale(1.2);
    color: #5a8a35;      /* slightly darker on hover */
}

.btn-primary {
    background: linear-gradient(135deg, #0b1d3a, #1a3b6f); /* Deep midnight blue to royal navy */
    border: none;
    border-radius: 12px;
    font-weight: 700;
    color: #ffd700; /* Luxurious gold text */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a3b6f, #0b1d3a); /* Reverse for subtle movement */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

/* Premium Dark Secondary Button */
.btn-secondary {
    background: linear-gradient(135deg, #2e1a3f, #5a2e8b); /* Deep purple gradient */
    border: none;
    border-radius: 12px;
    font-weight: 600;
    color: #e0c68b; /* Soft gold text for contrast */
    box-shadow: 0 5px 18px rgba(46, 26, 63, 0.4);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #5a2e8b, #2e1a3f);
    transform: translateY(-2px);
    box-shadow: 0 7px 22px rgba(46, 26, 63, 0.5);
}

/* Premium Dark Tertiary Button */
.btn-tertiary {
    background: linear-gradient(135deg, #1a3a2e, #2e8b5a); /* Deep emerald to teal */
    border: none;
    border-radius: 12px;
    font-weight: 600;
    color: #d4af37; /* Metallic gold text */
    box-shadow: 0 5px 18px rgba(26, 58, 46, 0.35);
    transition: all 0.3s ease;
}

.btn-tertiary:hover {
    background: linear-gradient(135deg, #2e8b5a, #1a3a2e);
    transform: translateY(-2px);
    box-shadow: 0 7px 22px rgba(26, 58, 46, 0.45);
}
/* View Job button */
.btn-job {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); /* Deep luxury gradient */
  box-shadow: 0 4px 14px rgba(32, 58, 67, 0.4), 
              inset 0 0 12px rgba(255, 215, 0, 0.2); /* Subtle glow */
  color: #fff !important; /* White text */
  border: 2px solid rgba(255, 255, 255, 0.3); /* Subtle white outline */
  position: relative;
  transition: all 0.35s ease-in-out;
}

/* Hover */
.btn-job:hover {
  background: linear-gradient(135deg, #2c5364, #203a43, #0f2027);
  box-shadow: 0 6px 20px rgba(32, 58, 67, 0.6),
              0 0 18px rgba(255, 255, 255, 0.4);
  transform: translateY(-3px) scale(1.03);
}

/* Active pressed */
.btn-job:active {
  transform: scale(0.97);
  box-shadow: 0 2px 6px rgba(0,0,0,0.4) inset;
}

/* Icon inside View Job button also white */
.btn-job .icon i {
  color: #fff !important;
}

.dashboard-btn {
  min-width: 260px; /* Adjust as needed */
  text-align: center;
}
/* Premium Card Header */
.card {
    border: none; 
    border-radius: 14px; 
    overflow: hidden; 
    box-shadow: 0 6px 18px rgba(0,0,0,0.1); 
}

.card-header {
    background: linear-gradient(135deg, #0a2a5b, #1a3b6f); 
    color: #f8f4e3 !important; 
    border-radius: 14px 14px 0 0 !important;
    padding: 1rem 1.5rem;
    position: relative;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25); 
    border-bottom: 1px solid rgba(255,255,255,0.1); 
}

.card-header .card-title {
    font-weight: 600;
    font-size: 1.3rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.users-icon {
    color: #f1c40f; 
    margin-right: 6px;
}
.card-header .card-title i {
    margin-right: 10px;       
    color: #f1c40f;            
    font-size: 1.4rem;         
    transition: transform 0.2s ease, color 0.2s ease;
}

/* Optional hover effect for icons */
.card-header .card-title i:hover {
    transform: scale(1.2);
    color: #ffd700;  
}




