/* Remove padding from card body */
.trip-card-body {
    padding: 0rem !important;
}

.text-muted span {
    color: black;
    font-weight: 900;
}

.trip-card-body-border {
    padding-bottom: 0px !important;
}

/* ✅ Initially No Border */
#trip-card-body-border {
    border: 2px solid transparent !important; /* Transparent border */
    transition: border-color 0.1s ease-in-out; /* Smooth transition */
}

/* ✅ On Hover, Show Border */
#trip-card-body-border:hover {
    border-color: #0dcaf0 !important; /* Change to blue on hover */
    cursor: pointer;
}

/* .trip-amount{
    color: greenyellow;
    
} */

.trip-amount strong{
    color: greenyellow
    ;
    font-size: 1.5rem;
}

.tripdetail-user-image {
    width: 200px; /* Default size for larger screens */
    height: 200px;
    border-radius: 50%; /* Makes it a perfect circle */
    object-fit: cover; /* Ensures the image maintains aspect ratio */
}

.summery_header h3{
    font-size: 24px;
}

.section-4 .trip_details_area .trip_summary .trip_content {
    padding: 40px !important;
  }
  
  .section-4 .trip_details_area .trip_summary .trip_content ul li {
    font-size: 16px;
    font-weight: 400;
    color: #AAB1B7;
    line-height: 38px;
    padding-left: 18px;
    position: relative;
  }
  
  .section-4 .trip_details_area .trip_summary .trip_content ul li::before {
    position: absolute;
    width: 8px;
    height: 8px;
    border: 1px solid #AAB1B7;
    border-radius: 50%;
    left: 0;
    content: '';
    top: 16px;
  }
  
  .section-4 .trip_details_area .trip_summary .trip_content ul li span {
    color: #001D38;
    font-size: 16px;
  }

  .trip-divider {
    width: 100%;  /* Adjust width as needed */
    height: 1px; /* Thickness of the line */
    background-color: #ddd; /* Light gray color */
    margin: 0px auto; /* Adds spacing and centers it */
    border-radius: 5px; /* Slightly rounded edges */
}


/* Trip Summary Box */
.trip_summary {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    
}

/* Align text and icons in trip details */
.trip_summary p {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    align-items: center;
}

/* Price Text */
.trip_summary .trip-amount {
    font-size: 18px;
    font-weight: bold;
    color: #28a745; /* Green */
}

/* Responsive Design */
@media (max-width: 768px) {
    .trip_summary {
        padding: 15px;
    }
    .trip_summary p {
        font-size: 14px;
    }
    .trip_summary .trip-amount {
        font-size: 16px;
    }
    .trip-amount strong{
        color: greenyellow
        ;
        font-size: 1rem;
    }
}

/* Further Adjustments for Small Screens */
@media (max-width: 480px) {
    .trip_summary {
        padding: 10px;
    }
    .trip_summary p {
        font-size: 13px;
    }
    .trip_summary .trip-amount {
        font-size: 15px;
    }
}


  
/* 🔹 Responsive for Tablets & Smaller Screens */
@media (max-width: 768px) {
    .tripdetail-user-image {
        width: 100px; 
        height: 100px;
    }
    .summery_header h3{
        font-size: 16px;
    }
}

/* 🔹 Responsive for Mobile Screens */
@media (max-width: 480px) {
    .tripdetail-user-image {
        width: 60px; 
        height: 60px;
    }

    .summery_header h3{
        font-size: 14px;
    }
}

.trip-detail-discription{
    padding: 1rem;
}

.trip-detail-bg{
    background-color: rgba(var(--bs-light-rgb));
    border-radius: 10px;
    padding: 0.5rem;

}

.trip-detail-badge{
    padding: 1em 0.65em !important;
}


/* Search Bar Styles */
.search-container {
    background-color: #f3f4f6;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    max-width: 1200px;
}
.search-container:hover {
    background-color: #dbdbdb;
    
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.search-input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    flex: 1;
    min-width: 150px;
}
.search-input:hover {
    padding: 10px;
    border: 1px solid #0dcaf0;
    box-shadow: 0 4px 8px rgba(200, 228, 220, 0.47);
    
}

.search-select {
    max-width: 150px;
}

.search-button {
    background-color: #0dcaf0;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: #00d5ff;
}

@media (max-width: 1024px) {
    .search-form {
        flex-direction: column;
    }

    .search-input,
    .search-button {
        width: 100%;
    }
}

.searchPTag {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically (if height is set) */
    text-align: center; /* Ensures text is centered */
    width: 100%; /* Ensures it takes full width */
    height: auto; /* Adjusts based on content */
  
    font-size: 16px; /* Adjust text size */
    font-weight: bold; /* Makes the text bold */
}


/* Custom Styles for Trip Cards */
.custom-card {
    width: 100%; /* Full width inside its column */
    max-width: 250px; /* Prevents it from being too large */
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.custom-card:hover {
    transform: translateY(-10px); /* Moves card up */
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
}

.explore-trip{

    color: #00d5ff !important;
     font-size: 1.2rem;
}


.dashboard{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}



.pagination span{
    font-size: inherit;
}





/* General Styles */
#subscription-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 100vh; */
    background-color: #f3f4f6;
    padding: 20px;
}

.subscription-wrapper {
    width: 100%;
    /* max-width: 900px; */
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: auto;
}

/* Title */
.subscription-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

/* Flexbox for Layout */
.subscription-content {
    display: flex;
    flex-wrap: wrap;

}


/* Admin Post Styles - Prefix: admin-post- */
.admin-posts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Left Section (Subscription Plans) */
.subscription-info {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
    color: white;
    min-width: 250px;
    background: linear-gradient(to right, #6b46c1, #4c51bf);
}

.subscription-info h3 {
    font-size: 18px;
    font-weight: bold;
}

.subscription-info p {
    font-size: 14px;
    margin-top: 10px;
}

/* Pricing Box */
.subscription-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    color: #333;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    font-weight: bold;
    cursor: pointer;
}

.subscription-pricing:hover {
    background-color: #f0f0f0;
}

/* Right Section: Subscription Form */
.subscription-form-container {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    margin-top: 20px;
    border: 1px solid black;
}

.subscription-form-container h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* Success Message */
.subscription-success {
    background: #d1fae5;
    color: #065f46;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

/* Form Inputs */
.subscription-field {
    margin-bottom: 15px;
}

.subscription-field label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #555;
}

.subscription-field select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
}

/* Subscribe Button */
.subscription-button {
    width: 100%;
    background: #6b46c1;
    color: white;
    padding: 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.subscription-button:hover {
    background-color: #4c51bf;
}

/* Responsive Design */
@media (max-width: 768px) {
    .subscription-content {
        flex-direction: column;
    }

    .subscription-form-container h3 {
        font-size: 14px !important;
        font-weight: bold;
        color: #333;
    }
}



/* Responsive Design */
@media (max-width: 420px) {
    .subscription-content {
        flex-direction: column;
    }

    .subscription-wrapper {
        margin: 0px;
        width: 100%;
    }

    .subscription-info {
        min-width: 200px;
    }
    .subscription-info  {
        min-width: 200px;
    }

    .subscription-form-container {
        min-width: 200px;
    }

    .subscription-form-container h3 {
        font-size: 12px !important;
        font-weight: bold;
        color: #333;
    }
}




.navbar-brand img {

    width: 100px;
}

/* Admin Post Styles - Prefix: admin-post- */
/* .admin-posts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
} */

/* .admin-post-card {
.admin-post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.admin-post-card:hover {
    transform: scale(1.05);
}

.admin-post-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.admin-post-content {
    padding: 15px;
    text-align: center;
}

.admin-post-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.admin-post-btn-view, .admin-post-btn-delete {
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.admin-post-btn-view {
    background: #3498db;
    color: white;
}

.admin-post-btn-delete {
    background: #e74c3c;
    color: white;
    border: none;
    cursor: pointer;
}

 */


 /* Admin Post Styles - Prefix: admin-post- */
.admin-posts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Ensures flexibility */
    gap: 20px;
    margin-top: 20px;
    padding: 0 10px; /* Small padding for mobile */
}

/* Post Card */
.admin-post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    max-width: 400px; /* Ensuring a reasonable max width */
    min-width: 280px; /* Prevents it from shrinking too much */
    margin: auto; /* Centers cards in mobile view */
}

.admin-post-card:hover {
    transform: scale(1.05);
}

/* Post Image */
.admin-post-image {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f4f4; /* Light background for empty state */
}

.admin-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image scales properly */
}

/* Post Content */
.admin-post-content {
    padding: 15px;
    text-align: center;
}

/* Buttons */
.admin-post-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2px;
}

.admin-post-btn-view, .admin-post-btn-delete, .admin-post-btn-edit {
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px; /* Readable on mobile */
    display: inline-block;
    text-align: center;
   /* width: 48%; Makes them equal in size */
}

.admin-post-btn-view {
    background: #3498db;
    color: white;
}

.admin-post-btn-edit{
    background-color: rgb(183, 213, 94);
    color: white;
}

.admin-post-btn-delete {
    background: #e74c3c;
    color: white;
    border: none;
    cursor: pointer;
}

.admin-post-form {
    width: 100%; /* Ensures form takes full width */
    display: flex;
    justify-content: center; /* Centers the button inside the form */
}

.admin-post-btn-delete {
    width: 100%; /* Button takes full width of form */
    padding: 10px 15px; /* Better spacing */
    font-size: 14px;
    text-align: center;
}


/* Mobile Responsiveness */
@media (max-width: 600px) {
    .admin-posts-container {
        grid-template-columns: 1fr; /* Single column layout on small screens */
    }

    .admin-post-card {
        width: 90%; /* Adjust width for small screens */
    }

    .admin-post-actions {
        flex-direction: column;
    }

    .admin-post-btn-view, .admin-post-btn-edit, .admin-post-btn-delete {
        width: 100%; /* Full-width buttons */
        margin-top: 5px;
    }
}


.blog-detail-heading{
    font-size: 36px;
}

.blog-detail-container{
    margin: 20px auto;
    border: 1px solid black;
    border-radius: 10px;
    box-shadow: 1px 2px 8px black;
    padding-top: 8px;
}

@media (max-width: 600px) {
    .blog-detail-heading{
        font-size: 16px;
    }

    
.blog-detail-container{
    margin-top: 10px auto;
    margin: 5px;
    border: 1px solid black;
    border-radius: 6px;
    box-shadow: 1px 2px 8px black;
    padding: 6px;
}
}

.subscription-container-list{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px auto;
}

.row-list{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px auto;
}



