/* Theme Name: Meup Child Theme
Theme URI: https://themeforest.net/user/ovatheme/portfolio
Description: This is child theme of meup
Author: Ovatheme
Author URI: https://themeforest.net/user/ovatheme
Template: meup
Version: 1.0.0
Tags: two-columns, three-columns, left-sidebar, right-sidebar, custom-menu, editor-style, featured-images, flexible-header, full-width-template, post-formats, rtl-language-support, sticky-post, translation-ready
Text Domain:  meup-child
*/
/* ============================================
   Meup Child Theme – Final Custom Styles
   ============================================ */

/* Single Banner */
.single-banner {
  height: 40vh !important;
}
@media (max-width: 768px) {
  .single-banner {
    height: 40vh !important;
  }
}
@media (max-width: 480px) {
  .single-banner {
    height: 40vh !important;
  }
}

/* Vendor Headings */
.vendor_wrap table .event_head tr td {
  color: #fff !important;
  font-size: 24px !important;
}

/* Toggle Features Link */
.toggle-features {
  color: #012031 !important;
  text-decoration: none;
  font-weight: 600;
}

/* Packages List */
.packages_list {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(33vw, 1fr)) !important;
  gap: 20px !important;
  margin: 30px 0 !important;
  align-items: start !important;
}



/* Packages List Items – Normal State: White card with dark text */
.packages_list .item {
  min-height: 450px; /* Set minimum height based on your tallest card */
    overflow: hidden; /* Contains absolutely positioned elements */
    position: relative; /* For absolute positioning of features */
  width: 100%;
  max-width: 100vw;
  background: #fff !important;
  border: 2px solid #012031 !important;
  border-radius: 10px !important;
  padding: 20px !important;
  text-align: center !important;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease !important;
  box-shadow: 0 4px 20px rgba(1, 32, 49, 0.1) !important;
}

/* Default text colors inside cards */
.packages_list .item h3,
.packages_list .price,
.packages_list .price .slash,
.packages_list .price .time,
.packages_list ul,
.packages_list ul li,
.packages_list ul li .value,
.package_content,
.toggle-features {
  color: #012031 !important;
}

/* Icons in normal state */
.icon_check {
  color: #036496 !important;
}
.icon_close {
  color: #e53935 !important;
}

/* On Hover: Change background to linear gradient and force all text inside to white */
.packages_list .item:hover {
  transform: translateY(-5px) !important;
  background: linear-gradient(45deg, #000000 60%, #036496) !important;
  border-color: #036496 !important;
}
.packages_list .item:hover,
.packages_list .item:hover * {
  color: #fff !important;
}

/* Headings within Packages */
.packages_list h3 {
  background-color: transparent !important;
  font-size: 24px !important;
  margin: 0 0 15px !important;
  padding-bottom: 15px !important;
  border-bottom: 2px solid #036496 !important;
  transition: color 0.3s ease !important;
}

/* Price Styling */
.packages_list .price {
  background-color: transparent !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  margin-bottom: 25px !important;
  transition: color 0.3s ease !important;
}
.packages_list .price .slash,
.packages_list .price .time {
  transition: color 0.3s ease !important;
  font-size: 16px !important;
  font-weight: 400 !important;
}

/* Features List */
.packages_list ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 25px !important;
  text-align: left !important;
}
.packages_list ul li {
  padding: 12px 0 !important;
  border-bottom: 1px solid rgba(1, 32, 49, 0.1) !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 18px !important;
  transition: color 0.3s ease !important;
}
.packages_list ul li .value {
  font-weight: 600 !important;
  margin-left: auto !important;
}

/* Package Content */
.package_content {
  margin: 20px 0 !important;
  line-height: 1.6 !important;
  background: rgba(3, 100, 150, 0.05) !important;
  padding: 15px !important;
  border-radius: 6px !important;
  transition: color 0.3s ease !important;
}

/* Buttons – .button and .register_package */
.button,
.register_package {
  display: inline-block !important;
  width: 100% !important;
  padding: 15px 20px !important;
  border-radius: 5px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  background: linear-gradient(45deg, #036496 50%, #012031) !important;
  color: #fff !important;
}
.button:hover,
.register_package:hover {
  background: linear-gradient(45deg, #036496 60%, #036496) !important;
  color: #fff !important;
}
.register_package {
  border: 1px solid #012031 !important;
}
.register_package:hover {
  border-color: #fff !important;
}

/* Current state button and active card styling */
.current {
  background: linear-gradient(
    45deg,
    rgba(1, 32, 49, 0.9) 60%,
    rgba(3, 100, 150, 0.9)
  ) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  position: relative;
  cursor: not-allowed !important;
  transition: all 0.3s ease !important;
}

.current.button::after {
  content: "✓";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #4caf50;
}

.current:hover {
  transform: none !important;
  box-shadow: 0 4px 15px rgba(1, 32, 49, 0.2) !important;
  background: linear-gradient(
    45deg,
    rgba(1, 32, 49, 1) 60%,
    rgba(3, 100, 150, 1)
  ) !important;
}

.packages_list .item button.current {
  color: #fff !important;
}
.packages_list .item button.current:hover {
  color: #fff !important;
}

/* Ensure text remains visible */
.current .price,
.current h3,
.current .value {
  color: #fff !important;
}

.current .icon_check {
  color: #4caf50 !important;
}

.current .icon_close {
  color: #ff5252 !important;
}
/* User Packages Table */
.list-package-user {
  margin: 40px 0 !important;
  overflow-x: auto !important;
}
.list-package-user table {
  width: 100% !important;
  border-collapse: collapse !important;
  background: #fff !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05) !important;
}
.list-package-user th,
.list-package-user td {
  padding: 12px 15px !important;
  text-align: left !important;
  border-bottom: 1px solid rgba(1, 32, 49, 0.1) !important;
  transition: background 0.3s ease;
}
.list-package-user thead {
  background: #012031 !important;
  color: #fff !important;
}
.list-package-user tr:hover {
  background-color: rgba(3, 100, 150, 0.03) !important;
}
/* Status Labels */
.list-package-user td:nth-child(6) {
  font-weight: 500 !important;
}
.list-package-user td[data-status="Active"] {
  color: #4caf50 !important;
}
.list-package-user td[data-status="pending"] {
  color: #ff9800 !important;
}
.list-package-user td[data-status="Deactive"] {
  color: #f44336 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .packages_list {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .packages_list .item {
    padding: 20px !important;
  }
  .packages_list h3 {
    font-size: 20px !important;
  }
  .packages_list .price {
    font-size: 28px !important;
  }
  .vendor_heading {
    font-size: 24px !important;
  }
  .list-package-user table {
    display: block !important;
    width: 100% !important;
  }
  .list-package-user th,
  .list-package-user td {
    padding: 10px !important;
    font-size: 14px !important;
  }
}
@media (max-width: 480px) {
  .packages_list .item {
    padding: 20px !important;
  }
  .packages_list .price {
    font-size: 28px !important;
  }
  .vendor_heading {
    font-size: 22px !important;
  }
}



// Admin DashBoard Styles 

.vendor_edit_event{
  background-color: transparent;

}
.vendor_edit_event{
  background-color: #282828;

}
.vendor_wrap .tab-contents.is-active {
  display: grid;
  background-color: #282828;
  grid-template-columns: 1fr 1fr;
}


.vendor_edit_event #mb_basic .location {
  padding: 30px;
background-color: #282828;
}


.vendor_wrap .contents{
  background-color: #036496;
  background-image: linear-gradient(315deg, #036496 0%, #000000 74%);;
}

.event_basic_block, .location, .contact, .image_feature, #mb_gallery {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin-bottom: 24px;
    padding: 24px;
}

.heading_section {
    font-size: 15px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #eaeaea;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vendor_field {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #6b6b6b;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

input[type="text"], 
input[type="password"], 
select, 
textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #000000;
    border-radius: 4px;
    font-size: 14px;
    color: #000000;
    background: #fff;
    transition: all 0.2s ease;
}

input[type="text"]:focus, 
input[type="password"]:focus, 
select:focus, 
textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
    outline: none;
}

.el_input_radio radio{
  border-color: #007bff;

}

.el_input_radio:hover {
    background: #f5f6f7;
}

.input_radio_group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.el_icon_help {
    color: #999;
    margin-left: 6px;
    font-size: 15px;
    vertical-align: middle;
}

/* Custom Radio Buttons */
.el_input_radio input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.checkmark {
    position: relative;
    height: 18px;
    width: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 10px;
}

.el_input_radio input:checked ~ .checkmark {
    border-color: #007bff;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #007bff;
}

.el_input_radio input:checked ~ .checkmark:after {
    display: block;
}

/* Buttons */
.el_btn_add {
    background: #007bff;
    color: #fff !important;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.el_btn_add:hover {
    background: #0056b3;
}

/* Image Upload */
.image_feature .wrap {
    border: 2px dashed #e1e1e1;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    background: #fafbfc;
}

.image_box {
    position: relative;
    display: inline-block;
    margin: 10px;
}

.remove_image {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #fff;
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Map Section */
.el_map {
    border: 1px solid #eaeaea;
    border-radius: 6px;
    overflow: hidden;
}

#admin_show_map {
    border-radius: 0 0 6px 6px;
}

/* Social Media Section */
.social_item {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.social_item .link_social {
    flex: 1;
}

.remove_social {
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tag Input */
.event_tag {
    background: #f5f6f7;
    border-radius: 4px;
    padding: 8px 12px !important;
}

/* Editor */
.wp-editor-container {
    border: 1px solid #e1e1e1;
    border-radius: 4px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .country_city {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .input_radio_group {
        grid-template-columns: 1fr;
    }
    .vendor_wrap .tab-contents.is-active{
      grid-template-columns: 1fr;
    }
}

.el_edit_event_submit{
  color: #012031 !important;
}


.vendor_edit_event #mb_extra_service #mb_add_services {
  margin:
10px 0px;
  display: none !important;
}



















