
body { background:#f4f6f9; }

.user-container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.user-container .container {
  background-color: rgba(175, 203, 165, .2);
  padding: 20px;
  border-radius: 5px;
}
.user-container .container label {
  display: block;
  margin-bottom: 8px;
  color: black;
}
.user-container .btn{
  background-color: #157347 !important;
  color: #fff !important;
}
.underline-btn,
.create-admin-cls{
  color: #157347;
}


.btn {
  height: 3.5rem;
  padding: 1rem 2rem !important;
  min-height: auto !important;
}
.head-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.head-wrapper h2{
  margin-bottom: 0 !important;
}
.card {
  border-color: #00321A !important;
}
.card-header {
    padding: 15px 36px;
    background: #00321A !important;
}
.card-body{
    padding: 30px;
}
.card-body .form-label {
   margin-bottom: 15px !important;
   font-size: 18px;
}
.menu-card {
  border: 1px solid #157647;
  border-radius: 14px;
  padding: 12px;
  cursor: pointer;
  background: #fff;
  transition: all .25s ease;
  height: 100%;
}
.menu-card img {
    border-radius: 10px;
    height: 220px;
    object-fit: cover;
    width: 100%;
}
.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
}
.menu-card.selected {
    border-color: #198754;
    box-shadow: 0 0 0 4px rgba(25,135,84,.25);
}

.card table tbody tr:nth-child(2n) {
    background: #ecf3f2;
}
.card table tbody tr td{
  background: transparent;
}
.card-body th, .card-body td {
  padding: 15px;
}
.card-body th {
  background: #157647 !important;
  color: white !important;
}
.menu-card h6 {
  margin: 0 !important;
  padding: 18px 0 5px;
}
.form-control {
  height: 49px;
}
.form-control:focus{
  border-color: #198754 !important;
  box-shadow: none !important;
}


/*MY CSS*/

/* Admin Layout */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 240px;
  background: #1e1e2d;
  color: #fff;
  padding: 20px;
}

.sidebar-header {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 12px;
}

.sidebar .nav-link {
  color: #cfcfcf;
  padding: 10px 15px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
  background: #2b2b40;
  color: #fff;
}

/* Main Content */
.admin-content {
  flex: 1;
  padding: 30px;
  background: #f8f9fa;
}

.admin-content .btn{
  border-color: #157647;
  color: #157647;
  background: white;
}
.admin-content .btn:hover{
  background: #157647;
  color: white;
}
.admin-content .open-shopify {
  border: none;
  font-weight: 700;
  background: transparent !important;
  color: #157647 !important;
}

.admin-content .head-wrp {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.admin-content .head-wrp h2{
  margin-bottom: 0 !important;
}
.admin-content .badge,
.admin-content .head-wrp span {
  background: #157647 !important;
  padding: 4px 10px;
  border-radius: 15px;
  color: white !important;
  font-size: 14px;
  font-weight: 500;
}
.admin-content .alert.alert-info {
  color: #00321A;
  background: #15764730;
  border: none;
}