.mandatory {
  color: red;
}
body {
    background-image: unset;
}
.menu .menu--level-1 {
  list-style: none;
  background: #e1903f;
}
.menu__link .menu__link--link menu__link--level-1 {
  text-decoration: none;
  color: #fff;
}
li.menu__item--link {
  border: 2px solid !important;
  list-style: none;
  background: #e1903f;
  color: #fff;
  padding: 1em;
}
li.menu__item--link a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}
li.menu__item--link a:focus {
  outline: unset;
}
.grid-full {
  /* grid-template-columns: repeat(4, minmax(0, 1fr)) !important; */
}
.menu--level-2 .menu__item--level-2 {
  background: #fff;
  margin-bottom: 1px;
}
.menu--level-2 .menu__item--level-2 a {
  color: #e1903f;
}
#block-zakhira-theme-main-menu {
  border-right: 2px solid #e1903f;
  padding-right: 8px;
}
.box {
  border: 1px solid #e1903f;
  border-radius: 5px;
  text-align: center;
  background: #e1903f;
  color: #fff;
  height: 150px;
  padding: 15px 0;
}
.box h2,.box h3, .box h4 {
  color: #fff;
}
.sidebar-grid {
  width: 350px;
  float: left;
}
.zakhira-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Two equal-width columns */
  grid-gap: 20px;
}
a.box-link {
  text-decoration: none;
}
a.box-link div.box:hover {
  background: #0056b3;
}
.reward-points-block {
  background-color: #f0f0f0; /* Light gray background */
  border: 1px solid #ccc; /* Border around the block */
  border-radius: 8px; /* Rounded corners */
  padding: 20px; /* Padding inside the block */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Box shadow for a modern look */
  width: 300px; /* Adjust width as needed */
}

.reward-points-block p {
  margin: 0; /* Remove default margin for paragraph */
  font-size: 16px; /* Adjust font size as needed */
  color: #333; /* Text color */
}

.reward-points-block a {
  display: block; /* Display link as block to occupy full width */
  padding: 10px; /* Add padding for better clickability */
  text-align: center; /* Center-align the link */
  text-decoration: none; /* Remove underline */
  background-color: #007bff; /* Blue background color */
  color: #fff; /* Text color */
  border-radius: 4px; /* Rounded corners */
  transition: background-color 0.3s; /* Smooth transition */
}

.reward-points-block a:hover {
  background-color: #0056b3; /* Darker blue on hover */
}
.secondary-nav__menu-item {
  margin-bottom: 10px; /* Add margin between menu items */
}

.secondary-nav__menu-link {
  display: block; /* Display links as block for full width */
  padding: 10px; /* Add padding for better clickability */
  text-decoration: none; /* Remove underline */
  color: #333; /* Text color */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}

.secondary-nav__menu-link:hover {
  background-color: #f0f0f0; /* Light background color on hover */
  color: #007bff; /* Text color change on hover */
}

/* Add modern styling to the form */

.withdrawal-request-form {
  background-color: #f0f0f0; /* Light gray background */
  border: 1px solid #ccc; /* Border around the form */
  border-radius: 8px; /* Rounded corners */
  padding: 20px; /* Padding inside the form */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Box shadow for a modern look */
  max-width: 400px; /* Limit form width */
  margin: 0 auto; /* Center the form horizontally */
  margin-top: 5em;
}

.form-item {
  margin-bottom: 20px; /* Add margin between form items */
}

/* Style form labels */
.form-item label {
  display: block; /* Display labels as block for better alignment */
  margin-bottom: 5px; /* Add margin below labels */
}

/* Style form inputs */
.form-item input[type="number"] {
  width: 100%; /* Make input fields full width */
  padding: 10px; /* Add padding */
  border: 1px solid #ccc; /* Add border */
  border-radius: 4px; /* Rounded corners */
}

/* Style form submit button */
.form-actions {
  text-align: center; /* Center align form actions */
}

.form-actions input[type="submit"] {
  padding: 10px 20px; /* Add padding */
  background-color: #007bff; /* Blue background color */
  color: #fff; /* Text color */
  border: none; /* Remove border */
  border-radius: 4px; /* Rounded corners */
  cursor: pointer; /* Change cursor to pointer on hover */
  transition: background-color 0.3s; /* Smooth transition */
}

.form-actions input[type="submit"]:hover {
  background-color: #0056b3; /* Darker blue on hover */
}
.site-branding {
  min-height: unset !important;
  background: unset !important;
}
.site-branding__logo img {
  max-height: unset;
  height: 300px;
}
.container {
  max-width: 100% !important;
}
.page-wrapper {
  max-width: 100% !important;
}


@media (max-width: 768px) {
  .zakhira-container-main {
    display: grid;
  }
  #block-zakhira-theme-main-menu {
    border-right: none;
    padding-right: 8px;
}
ul {
  margin-left: 0 !important;
}
  .box {
    height: auto; /* Adjust height for mobile */
    padding: 10px; /* Adjust padding for mobile */
  }

  .withdrawal-request-form {
    max-width: 100%; /* Full width for form on mobile */
    margin: 0 10px; /* Add some margin for spacing */
  }

  .menu .menu--level-1 {
    background: #fff; /* Adjust background for mobile */
  }

  .menu__link .menu__link--link menu__link--level-1 {
    color: #333; /* Adjust text color for mobile */
  }

  .site-branding__logo img {
    height: auto; /* Adjust logo height for mobile */
    max-width: 100%; /* Ensure logo fits within screen */
  }
}

.zakhira-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
}
.box {
  height: auto; /* Let content dictate height */
  padding: 1.5em;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.box h4 {
  font-size: 1.2rem;
  margin: 0.5em 0;
}

a.box-link div.box:hover {
  background: #d4772b;
  transform: scale(1.02);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .zakhira-container {
    grid-template-columns: 1fr; /* Single column on small screens */
    padding: 10px;
  }

  .box h4 {
    font-size: 1rem;
  }
}



/* zakhira.forms.css */
.zakhira-email-wrapper {
  max-width: 500px;
  margin: 2rem auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.zakhira-email-wrapper .form-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #333;
}
.zakhira-email-wrapper input.form-control {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.zakhira-email-wrapper .button--primary {
  background-color: #28a745;
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.zakhira-password-wrapper {
  max-width: 500px;
  margin: 2rem auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.zakhira-password-wrapper .form-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #333;
}
.zakhira-password-wrapper input.form-control {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 1rem;
}
.zakhira-password-wrapper .button--primary {
  background-color: #007bff;
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
