


/* Card styling */
.admin-create-card {
  background-color: #2c5364;
  backdrop-filter: blur(10px);
  max-width: 900px;
  margin: 0px auto;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: center;
}

/* Logo */
.admin-create-card img {
  height: 80px;
  width: 80px;
  margin-bottom: 10px;
}

/* Heading */
.admin-create-card h4 {
  font-weight: 600;
  margin-bottom: 25px;
 color: #7ae7fc;
}

.form-label {
  font-weight: 500;
  color: #7ae7fc;
}


/* Inputs */
.admin-create-card .form-control,
.admin-create-card .form-select {
  border-radius: 6px;
  border: 1px solid #dcdcdc;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.admin-create-card .form-control:focus,
.admin-create-card .form-select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* Button */
.admin-create-card .btn-primary {
  background-color: #be8b00;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.admin-create-card .btn-primary:hover {
  background-color: #2c5364;
  color: #be8b00;
}



.admin-create-card img{
  max-width: 100px;
  height: auto;
  display: block;
  margin: 0 auto 15px auto;
}
/* Alert messages */
.admin-create-card .alert {
  margin-bottom: 20px;
  border-radius: 6px;
}
/* Center the alert box on screen */
.alert-box {
  position: fixed;              /* stay in place even when scrolling */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;                /* make sure it sits above other elements */
  width: 400px;                 /* adjust width as needed */
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  overflow: hidden;
}

/* Header, body, footer styling */
.alert-box-header {
  background-color: #007bff;
  color: #fff;
  font-weight: 600;
  padding: 10px 15px;
}

.alert-box-body {
  padding: 15px;
  font-size: 15px;
  color: #333;
}

.alert-box-footer {
  background-color: #f9f9f9;
  padding: 10px 15px;
  text-align: right;
}

.alert-btn {
  background-color: #007bff;
  border: none;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.alert-btn:hover {
  background-color: #0056b3;
}
