
/* Apply styles directly to the body */
* {
  -webkit-tap-highlight-color: transparent; /* Removes the highlight */
  outline: none; /* Ensures no additional outline appears */
 }
 
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #f8f9fa;
    user-select: none; /* Disable text selection */
}

.error-message {
  color: #dc3545; /* Red color for errors */
  background-color: #f8d7da; /* Light red background */
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  padding: 10px 15px;
  margin-bottom: 15px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Watermark styles */
#watermark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(248, 249, 250, 0.8);
    z-index: 1; /* Ensure it appears above everything else */
    visibility: visible; /* Default state */
}

#watermark .icon {
    font-size: 4rem;
    color: #ccc;
}

#watermark .message {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: #888;
}

#watermark .explore-btn {
    margin-top: 1.5rem;
    padding: 0.7rem 1.5rem;
    border: none;
    background: #FFB74D;
    color: white;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

#watermark .explore-btn:hover {
    background:rgb(255, 145, 0);
}

/* Hide watermark when content exists */
body.has-content #watermark {
    visibility: hidden;
    display: none; /* Ensure it does not take space */
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15%, 1fr)); /* Auto-adjust columns */
    gap: 1rem; /* Space between items */
    justify-content: center; /* Center align the grid */
    margin: 1rem;
}

.image-container-ham, .image-container-ham-pend {
  flex: 0 1 230px; /* flex-grow: 0, flex-shrink: 1, flex-basis: 230px */
  max-width: 100%; /* Ensure it doesn't exceed container width */
  background: #fff;
  border: 1px solid #ddd;
  border-radius:12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  margin: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  cursor:pointer;
}

.image-container-ham img, #image-container-ham-received img, .image-container-ham-pend img {
    width: 95%;
    max-height:20vh;
    display: block;
    z-index:5;
    border-radius:10px;
}

.image-container-ham-pend {
    padding: 10px 0;
}

.image-description-ham-pend {
    font-size: 0.85rem;
    color: #333;
    margin: -1px 0; /* Separate paragraphs vertically */
    padding: 5px; /* Add inner spacing to improve readability */
    width: 90%; /* Ensure the text doesn’t exceed the container width */
    text-align:left; /* Center the text horizontally */
    box-sizing: border-box;
    max-width: 700px; /* Maximum width for the description */
    white-space: normal; /* Allow text to wrap to multiple lines */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Ensure exactly 2 lines */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-height: 1.5rem; /* Adjust this based on your font */
    max-height: calc(1.5rem * 2); /* Ensure 2 full lines */
}

#content-container,#content-container1 {
    width: 100%; /* Ensure container spans full width */
    display: flex;
    flex-direction: row; /* Arrange items horizontally */
    flex-wrap: wrap; /* Allow wrapping to the next row */
    justify-content: flex-start; /* Align items to the start of each row */
    align-items: center; /* Vertically center content */
    gap: 10px; /* Add spacing between items */
    padding: 0;
    max-width: none;
}

@media (max-width: 490px) {
  #content-container,#content-container1 {
    justify-content: center; /* Align items to the center */
  }
}

.image-description-ham {
  font-size: 0.85rem;
  color: #333;
  margin: -1px 0;
  padding: 5px;
  width: 90%;
  text-align:left;
  box-sizing: border-box;
  max-width: 700px;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Ensure exactly 2 lines */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  line-height: 1.5rem; /* Adjust this based on your font */
  max-height: calc(1.5rem * 2); /* Ensure 2 full lines */
}

.timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem; /* Space between each child */
  width: fit-content;
  margin: 0 auto;
  padding: 8px;
  font-size: 1rem;
}

.time-block {
  display: flex;
  align-items: center; /* Align number and label in one line */
  gap: 0.2rem; /* Reduce space between number and label */
}
.toBeHidden{
  display: none;
}

.time-block h4, .time-label {
  margin: 0;
  color: grey;
}

.ends-in,.clock{
    font-size: 0.9rem; /* Adjust the size as needed */
}
.clock{
    color:#ff5722;
}
.button-container {
    display: flex;
    justify-content: center;
    gap:15px;
    margin-top:-15px; /* Add controlled spacing above buttons */
    margin-bottom:8px;
    width: 90%; /* Take up full width of parent */
    position: relative;
}

/* WhatsApp-like two ticks container */
.whatsapp-ticks {
  display:none;
  align-items: center; /* Align ticks vertically with text */
  gap: 0px; /* Space between the two ticks */
  margin-top: 18px;
}

/* SVG ticks */
.whatsapp-ticks svg {
  width: 14px; /* Adjust size of the ticks */
  height: 12px; /* Adjust size of the ticks */
  color: #FFA500; /* Grey for sent/delivered */
  transform: rotate(-10deg); /* Rotate ticks clockwise */
  margin-right: -7px; /* Overlap the ticks slightly */
}

.ban{
 display:none;
  margin-top: 18px;
  color:red;
  outline: none;
}

.whatsapp-ticks.show{
  display: inline-flex;
}
.ban.showBan{
  display: flex;
}

.avaTimer{
  font-family: 'Arial', sans-serif;
  color:#666;
  margin-top: 18px;  
  font-size: 0.8rem;
}

/* Base styles for .conf and .revo */
.conf, .revo, .ava, .unava, .undoClass {
  font-family: 'Arial', sans-serif;
  font-size: 0.56rem; /* Use relative units */
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  margin-top: 18px;
  flex: 1; /* Allow buttons to grow and shrink */
  min-width: 0; /* Allow buttons to shrink below their default minimum width */
  padding: 0.5em 1em; /* Use relative units */
  display: flex; /* Use flexbox to center text */
  align-items: center; /* Vertically center text */
  justify-content: center; /* Horizontally center text */
}

.conf, .revo {
  padding: 0.8rem 1.3rem;
}

.ava {
  padding: 0.8rem 0.7rem;
}

.unava {
  padding: 0.8rem 0.9rem;
}

.undoClass{
  padding: 0.8rem 0.1rem;
}

/* Specific styles for .conf and .ava */
.conf, .ava {
  background: linear-gradient(135deg, #ff8c42, #ff5a1f); /* Sweet orange gradient */
  color: #fff;
  box-shadow: 0 4px 8px rgba(255, 138, 66, 0.3); /* Soft glowing shadow */
  transition: all 0.3s ease-in-out;
}

.conf:hover, .ava:hover {
  background: linear-gradient(135deg, #ff5a1f, #e64a19); /* Slightly deeper orange on hover */
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(255, 90, 31, 0.4);
}

/* Specific styles for .revo and .unava */
.revo, .unava {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)); /* Smooth, deep black-glass effect */
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Soft shadow for richness */
  transition: all 0.3s ease-in-out;
}

.revo:hover, .unava:hover {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)); /* Slightly lighter on hover for depth */
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4); /* Slightly stronger glow */
}

/* Active state for all buttons */
.conf:active, .revo:active, .ava:active, .unava:active, .undoClass:active {
  transform: scale(0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Styles for undoClass */
.undoClass {
  background: linear-gradient(135deg, #FFB74D, #FF7F50); /* Warm and inviting */
  color: #fff;
  box-shadow: 0 4px 8px rgba(255, 183, 77, 0.3); /* Soft glowing shadow */
  transition: all 0.3s ease-in-out;
}

.undoClass:hover {
  background: linear-gradient(135deg, #FF7F50, #FF5722); /* Deeper orange on hover */
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(255, 127, 80, 0.4);
}

/* Styles for confirmedClass */
.confirmedClass, .deletedClass {
  /* Remove all button-like styles */
  background: none !important; /* Remove background */
  border: none !important; /* Remove border */
  outline: none !important; /* Remove outline */
  box-shadow: none !important; /* Remove box shadow */
  cursor: default !important; /* Normal arrow cursor instead of pointer */
  text-transform: uppercase; /* UPPERCASE text */
  color: #FFA500 !important; /* Orange text color */
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margin */
  border-radius: 0; /* Remove border radius */
  transition: none !important; /* Remove transitions */
}
.confirmedClass{
  margin-top: 18px !important;
}


/* Ensure no hover or click effects */
.confirmedClass:hover,
.confirmedClass:active,
.confirmedClass:focus {
  background: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.messagebtn{
    margin-top: 1.5rem;
    padding: 0.7rem 1.5rem;
    border: none;
    background: #FFB74D;
    color: white;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;   
}
.messagebtn:hover{
    background:rgb(255, 145, 0);
}
.owner2 {
  display: flex;
  align-items: center; /* Vertically align icon and text */
  gap: 5px; /* Space between icon and text container */
  font-family: Arial, sans-serif;
  margin: 5px;
width:90%;
}

.itemOwner2 {
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: #555;
    cursor: pointer;
    opacity: 0.3;
}
.ownerPhoto2 {
  display: none;
  width: 40px !important;
  height: 40px !important;
  max-height: none !important;
  border-radius: 50% !important;
  object-fit: cover !important;
}

.owner2 p {
  display: flex;
  align-items: center; /* Vertically align name and follow */
  margin: 0; /* Remove default paragraph margin */
  flex: 1; /* Allow paragraph to grow and shrink */
  min-width: 0; /* Allow paragraph to shrink below its default minimum width */
}

.ownerName2 {
    display: inline-block;
    width: 90px; /* Fixed width for consistent spacing */
    flex: 1; /* Allow it to grow and shrink */
    overflow: hidden; /* Hide overflowed text */
    text-overflow: ellipsis; /* Add ellipsis for long names */
    white-space: nowrap; /* Prevent text wrapping */
    font-weight: bold;
    color: #333;
    text-align: left;
    cursor: pointer;
}

.telplane:hover{
    transform: scale(1.2);
}

/*Login css*/
.login-body, .signup-body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* allow to expand if content is bigger */
  background: white;
  overflow-x: hidden; /* prevent horizontal scroll */
  overflow-y: auto;   /* enable vertical scroll if needed */
}

.form-container {
    width:25rem;
    background: #fff;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius:10px;
    border:1px solid orange;
}

.form-container h2 {
    margin: 0 0 1.5rem;
    font-size: 2rem;
    color:rgba(0, 0, 0, 0.65);
}

.form-container form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-container input {
    width: 90%;
    padding: 0.8rem 1rem;
    border: 1px solid orange;
    border-radius: 25px;
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: 0.3s ease;
}

.form-container input:focus {
/*    border-color: #6a11cb;*/
    box-shadow: 0 1px 7px orange;
/*    box-shadow: 0 0 10px rgba(106, 17, 203, 0.5);*/
}

.btn {
    padding: 0.8rem 1rem;
    width:96%;
    margin-left:2%;
    border: none;
    border-radius: 25px;
    background:orange;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.5s ease;
}

.btn:hover {
    transform: scale(1.02);
     /* box-shadow: 0 0.3px 5px orange; */
/*    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.5);*/
}

.form-container .social-icons {
    margin-top: 4.8rem;
    margin-left:20%;
}

.form-container .social-icons i {
    font-size: 1.5rem;
   color: #2575fc;
    cursor: pointer;
    transition: 0.6s ease;
}

/* .loginlogo,.signuplogo {
    width: 230px;
    margin-bottom: 0.5rem;
} */


.Gsignup{
  position:absolute;
    margin-top:25%;
    margin-right:3%;  
      color: #2575fc;
    cursor: pointer;
    transition: 0.6s ease;
}
.Gsignin{
    position:absolute;
    margin-top:27.45%;
    margin-right:3%;
    color: #2575fc;
    cursor: pointer;
    transition: 0.6s ease;
}
.google2{
    position:absolute;
    margin-left:-0.3%;
    margin-top:-2%;
}

form a, .noaccount a{
            color: #007BFF;
            text-decoration: none;
            transition:0.5s ease;   
}
form a:hover, .noaccount a:hover{
    transform: scale(1.08);
}
.noaccount{
  color:rgba(0, 0, 0, 0.65);
  margin-top:7%;  
}
.status{
  margin-bottom:0%;
  margin-top:-5%;
  padding:2px;
}
.pstatus{
  font-size:0.88rem;  
}
.pending{
 font-size:0.88rem;   
 font-style:italic;
 color:#d7d3d3;
}

.gsi-material-button {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  background-color: WHITE;
  background-image: none;
  border: 1px solid #747775;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1f1f1f;
  cursor: pointer;
  font-family: 'Roboto', arial, sans-serif;
  font-size: 14px;
  height: 40px;
  letter-spacing: 0.25px;
  outline: none;
  overflow: hidden;
  padding: 20px 100px;
  position: relative;
  text-align: center;
  -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
  transition: background-color .218s, border-color .218s, box-shadow .218s;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  max-width: 400px;
  min-width: min-content;
  margin-top:5%;
 
}

.gsi-material-button .gsi-material-button-icon {
  height: 20px;
  margin-right: 12px;
  min-width: 20px;
  width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
  -webkit-transition: opacity .218s;
  transition: opacity .218s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.gsi-material-button:disabled {
  cursor: default;
  background-color: #ffffff61;
  border-color: #1f1f1f1f;
}

.gsi-material-button:disabled .gsi-material-button-contents {
  opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
  opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state, 
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  background-color: #303030;
  opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
  -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  background-color: #303030;
  opacity: 8%;
}
.or-class{
    margin-top:4%;
    color:rgba(0, 0, 0, 0.65)
}

.logo {
  font-size: 2.2rem;
  font-weight: 700;
  font-style: italic; /* Classic look */
  color: #f97316;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: default;
  pointer-events: none;
  padding-bottom: 8%;
  font-family: "Playfair Display", serif; /* Elegant font */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.logo-icon {
  width: 38px;
  height: 38px;
  background-color: #f97316;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: default;
  font-weight: bold;
  pointer-events: none;
  font-size: 1.4rem;
  font-family: "Dancing Script", cursive; /* Adds a luxury feel */
  border: 2px solid white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-text {
  font-weight: 600;
  font-style: italic;
  letter-spacing: 1px;
  pointer-events: none;
  cursor: default;
}

 /*For wishlist*/
.wishlist-header {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
}

.wishlist-header h1 {
    font-size: 2.5rem;
    color: #333;
}
.wishlist-description {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
}
.wishlist-info {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
}
.wishlist-info i {
    margin-right: 5px;
    color: #FFB74D;
}

.borderStyle {
  border-color: #FFA500; /* Apply orange border */
  border-width: 2px; /* Optional: Add border width */
}

/*This for pending orders*/
 .pending-header {
    text-align: center;
    padding: 20px;
    background-color: #fff3cd; /* Light yellow background for attention */
    border-bottom: 1px solid #ffeeba; /* Matching border color */
    margin-bottom: 5px;
}
.pending-header h1 {
    font-size: 2.5rem;
    color: #856404; /* Dark yellow for contrast */
}
.pending-description {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
}
.pending-info {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #856404; /* Matching dark yellow for consistency */
}
.pending-info i {
    margin-right: 5px;
    color: #ffc107; /* Yellow icon for emphasis */
}   

.borderStyle {
  border-color: #FFA500; /* Apply orange border */
  border-width: 2px; /* Optional: Add border width */
}

.floating-support {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
.support-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FFB74D;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor:pointer;
}
.support-button:hover {
    background-color:rgb(255, 145, 0);
}

/*This for received orders*/
.merchant-header {
    text-align: center;
    padding: 20px;
    background-color: #e9f5ff; /* Light blue background for a professional look */
    border-bottom: 1px solid #cce7ff; /* Matching border color */
    margin-bottom: 5px;
}
.merchant-header h1 {
    font-size: 2.5rem;
    color: #004085; /* Dark blue for contrast */
}
.merchant-description {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
}
.merchant-info {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #004085; /* Matching dark blue for consistency */
}
.merchant-info i {
    margin-right: 5px;
    color: #007bff; /* Blue icon for emphasis */
}  

/*This for placed orders*/
.placed-header {
    text-align: center;
    padding: 20px;
    background-color: #e2f3e2; /* Light green background for a positive vibe */
    border-bottom: 1px solid #c3e6c3; /* Matching border color */
    margin-bottom: 5px;
}
.placed-header h1 {
    font-size: 2.5rem;
    color: #155724; /* Dark green for contrast */
}
.placed-description {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
}
.placed-info {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #155724; /* Matching dark green for consistency */
}
.placed-info i {
    margin-right: 5px;
    color: #28a745; /* Green icon for emphasis */
} 

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#333; /* Slight transparency for modern elegance */
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack children vertically */
  z-index: 1000;
  overflow:hidden; /* Allow vertical scrolling for extra-large images */
}

.modal-desc{
  color:white;
  word-wrap: break-word;
  white-space: normal;
  font-size: 0.99rem;
  padding-left: 5%;
  padding-right: 5%;
  text-align: center;
  }
  
  .modal-content {
    max-width: 70%;
    max-height: 70%;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
  }

  /* Hover effect for modal images */
  .modal-content:hover {
  transform: scale(1.02); /* Gentle zoom for interaction feedback */
  cursor: zoom-in;
}
  
 /* Simple animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal.show {
  display: flex;
  animation: fadeIn 0.3s;
}
.lightboxPrice {
  color: white;
  padding-top:15px;
  margin: 0;
  font-size: 1.1rem;
}
  
  .modal-image-container {
    position: relative; /* Needed for absolute positioning of overlay */
    display: inline-block; /* Contain to image size */
    max-width: 70vw;
    max-height: 70vh;
  }

  .close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  .close-modal:hover {
    color: orange;
  }

  #seeMore2 {
    text-decoration: none;
    font-weight: bold;
    }
  
  @media (min-width: 768px) {
    .inner2 {
        visibility: hidden; /* Hide by default */
        background-color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 5px;
        position: absolute;
        padding: 10px; /* Add padding for spacing */
        max-width: 90%; /* Ensure it doesn't exceed the container width */
        width: max-content; /* Adjust width based on content */
        min-height:30%;
        bottom:0;
        box-sizing: border-box; /* Include padding in width/height calculations */
    }
 }
    
    .inner2-description {
        font-family: 'Source Sans Pro', Arial, sans-serif;
        font-size: 0.99rem;
        letter-spacing: 0.05em;
        color: #333;
        overflow-wrap: break-word; /* Break words that exceed container width */
        hyphens: auto; /* Automatically add hyphens when breaking words */
        white-space: normal;
        padding: 0 7%; /* Adjusts where words begin */
        margin: 0 0 5% 0; /* Adjusts the paragraph separation */
    }
    
    @media screen and (min-width: 768px) {
        .inner2 {
            max-width: 32%; /* Limit width on larger screens */
        }
    }
    
    .inner2 hr {
        margin-top: 5%;
        margin-bottom: 5%;
        width: 20%;
        cursor:pointer;
        border: none; /* Remove default styling */
        border-top: 5px solid transparent;
        border-image:linear-gradient(to right, #ff7f50, #ff4500); /* Gradient effect */
        border-image-slice: 1; /* Use the entire gradient */
        border-radius: 5px; /* Smooth rounded edges */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Add depth with shadow */
        transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
    }
    
    .inner2 hr:hover {
        transform: scale(1.1); /* Slightly enlarge on hover */
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4); /* Enhance shadow on hover */
    }

