/* ======================================================
   Custom Styles for Vibe Theme (Default)
   File: custom-style.css
   Location: /content/themes/default/custom-style.css
   Description: This file contains the custom CSS previously added in the Admin Panel
   ====================================================== */

.main-side-nav a {
  color: #000000; /* Black text color */
  font-weight: bold; /* Bold text */
  display: block;
  padding: 10px 15px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  margin-bottom: 8px;
}

.main-side-nav a:hover {
  color: #FFFFFF; /* White text on hover/active */
  background-color: #000000; /* Black background on hover/active */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Slight shadow for depth */
  transform: scale(1.05); /* Slightly enlarges the item on hover/active */
}

.main-side-nav a.active {
  color: #fff
  border-radius: 50px;
}
  
.publisher-tools-tab.js_publisher-tab {
  color: #000000; /* Black text color */
  font-weight: bold; /* Bold text */
  display: block;
  padding: 10px 15px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  margin-bottom: 8px;
}
  
.publisher-tools-tab.js_publisher-tab:hover {
    color: #FFFFFF; /* White text on hover/active */
  background-color: #000000; /* Black background on hover/active */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Slight shadow for depth */
  transform: scale(1.05); /* Slightly enlarges the item on hover/active */
}
  
.publisher-tools-tab.js_publisher-feelings {
  color: #000000; /* Black text color */
  font-weight: bold; /* Bold text */
  display: block;
  padding: 10px 15px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  margin-bottom: 8px;
}
  
.publisher-tools-tab.js_publisher-feelings:hover {
    color: #FFFFFF; /* White text on hover/active */
  background-color: #000000; /* Black background on hover/active */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Slight shadow for depth */
  transform: scale(1.05); /* Slightly enlarges the item on hover/active */
}

/* Post Header - Light Mode */
.post-header {
  position: relative;
  padding: 15px;
  border-radius: 20px; /* Rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  z-index: 100; /* Ensure it stays on top */
  transition: all 0.3s ease;
}

/* Hover Effect - Post Header */
.post-header:hover {
  transform: translateY(-5px); /* Slight lift on hover */
  z-index: 105; /* Ensure it stays on top during hover */
}

/* Drop-down Menu */
.float-end.dropdown .dropdown-menu {
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Shadow effect */
  z-index: 110; /* Higher than header to avoid overlap */
  position: absolute;
  top: 100%;
  right: 0;
  transform: translateY(10px);
}

/* Post Header - Dark Mode */
.dark-mode .post-header {
  background-color: #000000; /* Dark background for dark mode */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); /* Stronger shadow in dark mode */
}

/* Drop-down Menu - Dark Mode */
.dark-mode .float-end.dropdown .dropdown-menu {
  background-color: #333333; /* Dark background for the dropdown */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); /* Stronger shadow in dark mode */
}

.post-footer.x-hidden {
  border-radius: 15px;
  background-color: #FFFFFF;
  padding: 10px 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease-in-out;
}

.post-footer.x-hidden textarea {
  border-radius: 10px;
  border: 1px solid #A020F0;
  padding: 10px;
  width: 100%;
  box-shadow: none;
}

.post-footer.x-hidden textarea:focus {
  background-color: #F4F4F4; /* Slightly lighter background for focus state */
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.pg_wrapper.clearfix {
  border-radius: 20px; /* Rounded corners */
  overflow: hidden; /* Ensures the image stays within the rounded corners */
  margin: 15px; /* Adds space around the image */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow for depth */
}

.pg_wrapper.clearfix img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px; /* Matching the parent's rounded corners */
}

/* Publisher Form */
.x-form.publisher {
  border-radius: 20px; /* Rounded corners */
  padding: 5px 10px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  margin-bottom: 20px; /* Space below the form */
}

/* Gradient border with animation around the box */
.x-form.publisher::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 20px; /* Rounded corners matching the box */
  background: linear-gradient(45deg, #0000FF, #34A853, #FF8C42, #A020F0, #F4C542);
  background-size: 400% 400%;
  z-index: -1;
  animation: gradientMove 5s ease infinite; /* Animated gradient */
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Publisher Avatar */
.publisher-avatar img {
  border-radius: 50%; /* Circular avatar */
  width: 40px; /* Adjust size as needed */
  height: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Depth effect */
}

/* Publisher Message */
.publisher-message {
  font-size: 16px;
  color: #FFFFFF; 
  margin-left: 10px;
  transition: all 0.3s ease; /* Smooth transition */
}

/* Publisher Loader */
.publisher-loader {
  display: none; /* Hidden by default */
}

/* Colored Text Wrapper */
.colored-text-wrapper {
  color: #34A853; /* Green text */
}

/* Publisher Emojis */
.publisher-emojis {
  color: #FF8C42; /* Orange color */
}

/* Publisher Slider */
.publisher-slider {
  background-color: #F4F4F4; /* Light gray for contrast */
  border-radius: 20px; /* Rounded corners */
  padding: 15px;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Depth effect */
}

/* Publisher Tools Tabs */
.publisher-tools-tabs a {
  color: #000000;
  padding: 10px;
  border-radius: 10px; /* Rounded corners for tabs */
  transition: background-color 0.3s ease, color 0.3s ease;
}

.publisher-tools-tabs a:hover {
  background-color: #000000;
  color: #FFFFFF; /* White text on hover */
}

.dropdown-menu.show {
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Depth effect */
  overflow: hidden;
}

/* Post Button */
.d-grid .btn {
  background-color: #000000;
  color: #FFFFFF; /* White text */
  border-radius: 20px; /* Rounded button */
  transition: background-color 0.3s ease;
}

.d-grid .btn:hover {
  background-color: #34A853;
}


/* Publisher Footer Buttons */
.publisher-footer-buttons .btn {
  background-color: #000000;
  color: #FFFFFF; /* White text */
  border-radius: 20px; /* Rounded buttons */
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}

.publisher-footer-buttons .btn:hover {
  background-color: #34A853;
}

/* Privacy Button and Dropdown */
.btn-group.js_publisher-privacy .btn {
  background-color: #34A853; /* Green button */
  color: #FFFFFF;
  border-radius: 20px; /* Rounded button */
}

/* Post Video Section */
.overflow-hidden.mt10 {
  border-radius: 20px; /* Rounded corners */
  overflow: hidden; /* Ensures video stays within rounded corners */
  margin: 15px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Dark Mode for Video */
.dark-mode .overflow-hidden.mt10 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); /* Stronger shadow in dark mode */
}


/* Apply/View Candidates Button */
.mt10.d-grid .btn {
  background-color: #34A853; /* Green button */
  color: #FFFFFF; /* White text */
  border-radius: 20px; /* Rounded button */
}

/* Offer Original Price */
.text-success.mtb5 {
  color: #34A853; /* Green text */
}

/* Product Card Base Styling */
.card.product {
  border-radius: 20px; /* Rounded corners for a smooth look */
  border: 2px solid #34A853; /* Green border from the color palette */
  transition: transform 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

/* Dark Mode Styling */
@media (prefers-color-scheme: dark) {
  .card.product {
    background-color: #1c1c1c; /* Dark background for dark mode */
    border-color: #34A853; /* Green border remains in dark mode */
  }
}

/* Hover Effect */
.card.product:hover {
  transform: scale(1.05); /* Slightly enlarges the product card on hover */
  border-color: #0000FF; /* Changes border color to blue on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 255, 0.2); /* Adds a soft blue glow */
}

/* Border Animation */
.card.product::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 2px solid #34A853; /* Initial green border */
  transition: border-color 0.3s ease-in-out;
  pointer-events: none;
}

.card.product:hover::before {
  border-color: #0000FF; /* Change border to blue on hover */
}

/* Futuristic Effect */
.card.product .product-info {
  padding: 20px;
  color: #000; /* Black text color */
  transition: color 0.3s ease-in-out;
}

.card.product:hover .product-info {
  color: #000000; /* Change text color to white on hover */
}

/* View More Button */
.card.product .view-more {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 5px 10px;
  background-color: rgba(0, 0, 255, 0.8); /* Blue background */
  color: #000000;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.card.product:hover .view-more {
  opacity: 1; /* Show 'View More' button on hover */
}

/* Horizontal Menu */
.content-tabs.rounded-sm.shadow-sm.clearfix {
    border-radius: 20px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.content-tabs.rounded-sm.shadow-sm.clearfix a {
    color: #34A853;
}

.content-tabs.rounded-sm.shadow-sm.clearfix a:hover {
    color: #000000;
}

/* Add New Product Button */
.btn.btn-md.btn-primary.d-none.d-lg-block {
    background-color: #000000;
    border-radius: 25px;
    transition: background-color 0.3s ease-in-out;
}

.btn.btn-md.btn-primary.d-none.d-lg-block:hover {
    background-color: #34A853;
    color: #ffffff;
}

.side-nav a {
    color: #34A853;
    padding: 10px 15px;
    border-radius: 10px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.side-nav a:hover {
    background-color: #000000;
    color: #ffffff;
}

.card-body.pt5.stories-wrapper .story {
  position: relative;
  border-radius: 10px; /* Adjust radius as needed */
  overflow: hidden;
}

.card-body.pt5.stories-wrapper .story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(to right, #007BFF, #34A853, #FF8C42, #A020F0); /* Adjust colors */
  opacity: 0.1; /* Adjust opacity as needed */
}

.card-body.pt5.stories-wrapper .story-footer {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
}

.card-body.pt5.stories-wrapper .story-footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.card-body.pt5.stories-wrapper .story-footer span {
  margin-left: 10px;
  color: #FFFFFF; /* Adjust text color */
}

.posts-filter {
    font-weight: bold;
    color: linear-gradient(to right, #34A853, #000000); /* Gradient applied to text */
    }
}

/* Show Entries Section Styling */
.col-md-auto.me-auto {
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #000000;
}

.col-md-auto.me-auto select {
    margin-left: 10px;
    padding: 5px 20px;
    border-radius: 5px;
    border: 1px solid #34A853;
    background-color: #F4F4F4;
    font-size: 14px;
    color: #000000;
    transition: background-color 0.3s;
}

.col-md-auto.me-auto select:hover {
    background-color: #E0F7DF;
}

/* Search Section Styling */
.col-md-auto.ms-auto {
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #000000;
}

.dt-search {
    margin-left: 30px;
    position: relative;
    width: 100%;
}

.dt-search input[type="search"] {
    padding: 5px 10px;
    border-radius: 50px;
    border: 1px solid #34A853;
    width: 250px;
    background-color: #F4F4F4;
    font-size: 14px;
    color: #000000;
    transition: background-color 0.3s, width 0.3s;
}

.dt-search input[type="search"]:focus {
    background-color: #E0F7DF;
    width: 300px; /* Expands the search box on focus */
}

.dt-search::before {
    content: '\f002'; /* Font Awesome Search Icon */
    font-family: 'FontAwesome';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: #34A853;
}

/* Ads Table Styling */
.table.table-striped.table-bordered.table-hover.js_dataTable.dataTable {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.table.table-striped.table-bordered.table-hover.js_dataTable.dataTable thead th {
    background-color: #34A853;
    color: #FFFFFF;
    text-align: left;
    padding: 10px;
    font-weight: 500;
}

.table.table-striped.table-bordered.table-hover.js_dataTable.dataTable tbody td {
    padding: 10px;
    color: #333333;
    border-bottom: 1px solid #EEEEEE;
}

.table.table-striped.table-bordered.table-hover.js_dataTable.dataTable tbody tr:hover {
    background-color: #F4F4F4;
    transition: background-color 0.3s;
}

.table.table-striped.table-bordered.table-hover.js_dataTable.dataTable tbody tr.selected {
    background-color: #E0F7DF;
}

/* Danger Alert Message Styling */
.bs-callout.bs-callout-danger.mt0 {
    background-color: #ffebee;
    border-left: 5px solid #d32f2f;
    color: #d32f2f;
    padding: 15px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

/* Warning Alert Message Styling */
.bs-callout.bs-callout-warning.mt0 {
    background-color: #fff3e0;
    border-left: 5px solid #f57c00;
    color: #f57c00;
    padding: 15px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

/* Section Title Styling */
.section-title.mb20 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #333;
    border-bottom: 2px solid #34A853;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

/* Form Labels Styling */
.form-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

/* Form Inputs and Select Styling */
.form-control,
.form-select {
    border: 1px solid #34A853;
    border-radius: 5px;
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #ffffff;
    transition: border-color 0.3s, background-color 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: #2b3a67;
    background-color: #f4f4f4;
}

.input-money.left {
    border: 1px solid #34A853;
    border-radius: 5px;
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #ffffff;
    transition: border-color 0.3s, background-color 0.3s;
}

.input-money.left:focus {
    border-color: #2b3a67;
    background-color: #f4f4f4;
}

.data-container.js_chat-start:hover {
    background-color: #f0f0f0; /* Light gray hover effect */
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5); /* Glowing effect */
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.data-container.js_chat-start.active {
    background-color: #000; /* Dark background for active chat */
    border: 2px solid #34A853; /* Green border for active chat */
    box-shadow: 0 0 15px #34A853; /* Stronger glowing effect */
}

.card.panel-messages {
    background: linear-gradient(to bottom, #ffffff, #f7f7f7); /* White to light gray gradient */
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.chat-conversations.js_scroller {
    padding: 15px;
    overflow-y: auto;
    scroll-behavior: smooth;
    border-radius: 15px;
}

.x-form.chat-form {
    border-radius: 15px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1); /* Subtle top shadow */
    padding: 10px 15px;
    display: flex;
    align-items: center;
}

.chat-form-message {
    flex: 1;
    margin-right: 10px;
}

.js_autosize.js_post-message {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 1em;
    transition: border 0.3s;
}

.js_autosize.js_post-message:focus {
    border: 1px solid #34A853; /* Green border on focus */
    outline: none;
}

.chat-form-message button {
    background-color: #34A853; /* Green send button */
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.chat-form-message button:hover {
    background-color: #2e7d32; /* Darker green on hover */
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5); /* Glowing effect */
}

/* Initial Button Style */
.btn.btn-outline-primary.mb10,
.btn.btn-outline-primary {
    background-color: transparent; /* Transparent background */
    border: 2px solid #34A853; /* Green border */
    color: #34A853; /* Green text and icons */
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1em;
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Hover Effect */
.btn.btn-outline-primary.mb10:hover,
.btn.btn-outline-primary:hover {
    background-color: #34A853; /* Green background */
    color: #fff; /* White text and icons */
    border-color: #34A853; /* Keep border green */
}

/* Glow Effect */
.btn.btn-outline-primary.mb10:hover:before,
.btn.btn-outline-primary:hover:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(52, 168, 83, 0) 70%);
    z-index: 0;
    transition: all 0.6s ease-in-out;
    transform: scale(0);
    opacity: 0;
}

.btn.btn-outline-primary.mb10:hover:before,
.btn.btn-outline-primary:hover:before {
    transform: scale(1);
    opacity: 1;
}

/* Extra Shine Effect */
.btn.btn-outline-primary.mb10::after,
.btn.btn-outline-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    transform: translateX(-100%) translateY(-50%) rotate(45deg);
    transition: transform 0.7s ease-in-out;
    z-index: 1;
    opacity: 0;
}

.btn.btn-outline-primary.mb10:hover::after,
.btn.btn-outline-primary:hover::after {
    transform: translateX(200%) translateY(-50%) rotate(45deg);
    opacity: 1;
}

.post.boosted {
  position: relative; /* Allow for absolute positioning of child elements */
}

/* Post header styling */
.post-header {
  position: relative;
  z-index: 1; /* Ensure post header is below the menu when opened */
}

/* Ensure the header stays behind the menu when clicked */
@media only screen and (max-width: 768px) {
  .post-header {
    z-index: 0; /* Lower the z-index for mobile when menu is opened */
  }
 
  
  .menu-opened .post-header {
    z-index: -1; /* Push header further down the stack when menu is active */
  }
}

.sidebar-image img {
    width: 100%;
    height: auto;
    display: block;
}

.boosted-icon {
    position: absolute;
    top: 0; /* Ensures it's at the top of the post */
    z-index: 10; /* Makes sure it's above the header */
}

.card.product {
  background-color: #ffffff; /* White background for light mode */
  border-radius: 20px; /* Rounded corners for a smooth look */
  border: 2px solid #34A853; /* Green border from the color palette */
  transition: transform 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

/* Adjust the post-header to sit below the cancel button in the reels section */
.reel-container .post-header {
  margin-top: 10px; /* Increase this value if needed to push it further down */
  position: relative;
}

.reel-container .pt5.pr5.float-end {
  margin-top: 60px; /* Increase this value if needed to push it further down */
  position: relative;
}

.cc-btn.cc-dismiss {
  background-color: #FFFFFF
  border-radius: 50px}
}

.upgrade-widget {
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.upgrade-widget h2 {
  color: #333;
  margin-bottom: 10px;
}

.upgrade-widget div {
  color: #666;
  margin-bottom: 16px;
}

.upgrade-button {
  background-color: #34A853;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upgrade-button:hover {
  background-color: #FF8C42; 
}

.directory-card {
  background-color: #DEF7EA;
  border: 2px dotted #34A853;
}

.directory-card:hover {
  background-color: #FBF8D5;
}

.reel-actions .action-btn {
  background: transparent;
}

.reel-actions .post-avatar-picture {
  border: 3px solid #34A853;
}

.search-wrapper.d-none.d-md-block .form-control {
  border: 2px solid #000;
  border-radius: 50px;
  padding: 10px
  background-color: transparent;
}

.search-wrapper.d-none.d-md-block .form-control:hover {
  border: 2px solid #34A853;
}

.search-wrapper.d-none.d-md-block #search-input.form-control {
background-color: transparent; 
}


.card input.form-control {
  border-radius: 50px;
}

.card input.form-control:hover {
  border: 1px dashed #000;
}

.card .btn.btn-primary {
  border-radius: 50px;
}

.form-select:not([multiple]) {
  border-radius: 50px;
}

.form-select:hover {
  border: 1px dashed #000;
}

.post-avatar-picture {
  border-radius: 50px;
}

.btn.btn-light.js_chat-start {
  border-radius: 50px;
  background-color: transparent;
  border: 2px solid #000;
}

.btn.btn-light.js_chat-start:hover {
  border: 2px dashed #34A854;
}

.btn.btn-primary.js_shopping-add-to-cart {
  border-radius: 50px;
}

.badge.bg-primary {
  border-radius: 50px;
}

.badge.bg-info {
  border-radius: 50px;
}

.modal-content {
  border-radius: 20px 20px 20px 20px;
  padding: 15px;
  background-color: #E4EFFB;
}

.modal-content .form-control {
  border-radius: 50px;
}

.modal-content .form-control:hover {
  border: 1px dashed #000;
}

.modal-content textarea.form-control {
  border-radius: 20px;
}

.footer-bottom-bar {
  border-radius: 50px;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 10px;
}

.conversation-body .seen {
color: var(--body-color);
}

.cc-window.cc-floating .cc-btn.cc-dismiss {
  background-color: #000;
}

.post-map {
    padding-left: 15px;
    padding-right: 15;
    border-radius: 15px;
}

.page-header {
  background: linear-gradient(to right, #34A999, #34A853, #34A854, #34A999);
  position: relative;
  text-align: center;
  padding: 70px 15px;
  overflow: hidden;
  color: #fff;
  z-index: auto;
}

.card-body.js_ads-click-campaign .img-fluid {
    border-radius: 10px;
}


/* ═══════════════════════════════════════════════════════════════
   WATCH PAGE REDESIGN v2 — BiliBili/YouTube-Style (Borderless)
   Primary: #34A853  |  Compatible: light + dark mode
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --watch-primary:        #34A853;
  --watch-thumb-bg:       #e9ecef;
  --watch-thumb-radius:   10px;
  --watch-text-primary:   #0f0f0f;
  --watch-text-secondary: #606060;
  --watch-pill-bg:        #f2f2f2;
  --watch-pill-color:     #0f0f0f;
  --watch-pill-active-bg: #0f0f0f;
  --watch-pill-active-cl: #ffffff;
  --watch-section-gap:    2.25rem;
}
body.night-mode {
  --watch-thumb-bg:       #2a2a2a;
  --watch-text-primary:   #f1f1f1;
  --watch-text-secondary: #aaaaaa;
  --watch-pill-bg:        #272727;
  --watch-pill-color:     #e0e0e0;
  --watch-pill-active-bg: #ffffff;
  --watch-pill-active-cl: #0f0f0f;
}

/* ── Page Wrapper ──────────────────────────────────────────── */
.watch-page {
  padding: 0 0 3rem 0;
}

/* ── Category Pills Bar — transparent, arrow scroll ─────────── */
.watch-categories-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0 1rem 0;
  position: sticky;
  top: 60px;
  z-index: 10;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
}
body.night-mode .watch-categories-bar { border-bottom-color: rgba(255,255,255,0.08); }

/* Scroll wrapper (arrows + pill row) */
.watch-cat-scroll-wrap {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
/* Arrow scroll buttons */
.watch-pill-arrow {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.13);
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease;
  padding: 0;
  color: var(--watch-text-primary);
}
body.night-mode .watch-pill-arrow { border-color: rgba(255,255,255,0.13); }
.watch-pill-arrow:hover { background: rgba(0,0,0,0.07); }
body.night-mode .watch-pill-arrow:hover { background: rgba(255,255,255,0.07); }

.watch-categories-scroll {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}
.watch-categories-scroll::-webkit-scrollbar { display: none; }

.watch-cat-pill {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 500;
  background: var(--watch-pill-bg);
  color: var(--watch-pill-color);
  text-decoration: none;
  transition: background 0.18s ease;
  cursor: pointer;
  border: none;
}
.watch-cat-pill:hover { background: #dedede; text-decoration: none; }
body.night-mode .watch-cat-pill:hover { background: #383838; }
.watch-cat-pill.active {
  background: var(--watch-pill-active-bg);
  color: var(--watch-pill-active-cl);
  font-weight: 600;
}

/* Country filter button */
.watch-country-btn {
  white-space: nowrap;
  font-size: 0.82rem;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(0,0,0,0.15);
  background: transparent;
  color: var(--watch-text-secondary);
  transition: border-color 0.2s;
}
body.night-mode .watch-country-btn { border-color: rgba(255,255,255,0.15); }
.watch-country-btn:hover { border-color: var(--watch-primary); color: var(--watch-primary); }

/* ── Section Layout ─────────────────────────────────────────── */
.watch-section { margin-bottom: var(--watch-section-gap); }
.watch-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.watch-section-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--watch-text-primary);
  padding-left: 0.65rem;
  border-left: 3px solid var(--watch-primary);
  margin: 0;
  line-height: 1.2;
}
.watch-see-all {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--watch-primary);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.18s;
}
.watch-see-all:hover { opacity: 1; text-decoration: none; color: var(--watch-primary); }

/* ── Horizontal Scroll Row ──────────────────────────────────── */
.watch-scroll-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}
.watch-scroll-row::-webkit-scrollbar { display: none; }
.watch-scroll-row .watch-card { min-width: 240px; max-width: 240px; flex-shrink: 0; }

/* ── Top Grid (mixed videos, no heading) ───────────────────── */
.watch-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem 1.1rem;
  margin-bottom: var(--watch-section-gap);
}
@media (max-width: 991px) { .watch-top-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .watch-top-grid { grid-template-columns: 1fr; } }

/* ── Video Card — Completely Borderless ─────────────────────── */
.watch-card {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  cursor: pointer;
}
.watch-card:hover { transform: none; box-shadow: none; }
.watch-card-link { display: block; text-decoration: none; color: inherit; }
.watch-card-link:hover { text-decoration: none; color: inherit; }

/* Thumbnail — rounded corners live here */
.watch-card-thumb-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--watch-thumb-bg);
  overflow: hidden;
  border-radius: var(--watch-thumb-radius, 10px);
}
.watch-card-thumb,
.watch-card-thumb-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.watch-card:hover .watch-card-thumb,
.watch-card:hover .watch-card-thumb-wrapper video {
  transform: scale(1.04);
}

/* Overlay (clean dark tint + centered play btn via flexbox) */
.watch-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.watch-card:hover .watch-card-overlay { opacity: 1; }

.watch-card-play-btn {
  transform: scale(0.85);
  transition: transform 0.25s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.watch-card:hover .watch-card-play-btn { transform: scale(1); }

/* Meta row — date left, views right (below thumbnail) */
.watch-card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.2rem;
}
.watch-card-date {
  font-size: 0.74rem;
  color: var(--watch-text-secondary);
}
.watch-card-views {
  font-size: 0.74rem;
  color: var(--watch-text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

/* Category badge — bottom left, subtle dark pill */
.watch-card-category-badge {
  position: absolute;
  bottom: 7px;
  left: 7px;
  background: rgba(0,0,0,0.68);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.5;
  max-width: 55%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Card Body (below thumbnail, no padding sides) */
.watch-card-body { padding: 0.55rem 0 0 0; }
.watch-card-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--watch-text-primary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.3rem;
}

/* Channel row: tiny avatar + name inline */
.watch-card-channel {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.15rem;
}
.watch-card-ch-avatar-link { display: block; flex-shrink: 0; }
.watch-card-ch-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}
.watch-card-ch-name {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--watch-text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.watch-card-ch-name:hover { color: var(--watch-text-primary); text-decoration: none; }
.watch-verified-icon {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  vertical-align: middle;
  margin-top: -1px;
}

/* ── More Videos Grid ───────────────────────────────────────── */
.watch-more-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem 1.1rem;
}
.watch-more-list > li { display: block; }
@media (max-width: 767px) { .watch-more-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .watch-more-list { grid-template-columns: 1fr; } }

/* Load more */
.watch-load-more {
  margin-top: 1.5rem;
  border-radius: 8px;
  text-align: center;
  background: var(--watch-pill-bg);
  color: var(--watch-text-secondary);
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
}
body.night-mode .watch-load-more { border-color: rgba(255,255,255,0.08); }
.watch-load-more:hover { background: var(--watch-primary); color: #fff; border-color: var(--watch-primary); }

/* ── Vibes Row ─────────────────────────────────────────────── */
.watch-vibes-row {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.watch-vibes-row::-webkit-scrollbar { display: none; }

.watch-vibe-card {
  display: block;
  flex-shrink: 0;
  width: 130px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}
.watch-vibe-card:hover { transform: translateY(-3px); text-decoration: none; }

.watch-vibe-thumb-wrap {
  position: relative;
  width: 130px;
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  background: var(--watch-thumb-bg);
  margin-bottom: 0.4rem;
}
.watch-vibe-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.watch-vibe-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.watch-vibe-card:hover .watch-vibe-overlay { opacity: 1; }
.watch-vibe-author {
  position: absolute;
  bottom: 6px;
  left: 6px;
}
.watch-vibe-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
}
.watch-vibe-caption {
  font-size: 0.72rem;
  color: var(--watch-text-secondary);
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ── Empty State ────────────────────────────────────────────── */
.watch-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--watch-text-secondary);
}
.watch-empty p {
  margin-top: 1rem;
  font-size: 1rem;
}

/* Primary button helper */
.watch-btn-primary {
  background: var(--watch-primary);
  color: #fff;
  border-radius: 50px;
}
.watch-btn-primary:hover { background: #2d9448; color: #fff; }

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .watch-categories-bar { top: 56px; padding: 0.55rem 0 0.75rem; }
  .watch-scroll-row .watch-card { min-width: 200px; max-width: 200px; }
  .watch-vibe-card, .watch-vibe-thumb-wrap { width: 105px; }
  .watch-section-title { font-size: 0.95rem; }
}

/* ═══════════════════════════════════════════════════════════════
   END WATCH PAGE REDESIGN
   ═══════════════════════════════════════════════════════════════ */