* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: linear-gradient(to bottom, #021338, #0D1EB8, #1c60ff);
    color: white;
    min-height: 100vh; /* Ensure full viewport height */
}

/* Container */
.container {
    width: 100%; /* Full width up to max-width */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem; /* Responsive padding */
}

.container-fluid {
    width: 100%;
    padding: 0 1rem; /* Responsive padding */
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #021338, #0D1EB8, #1c60ff);
    padding: 80px 0;
    border-bottom: 2px solid #4DD0E1; /* Teal accent */
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #4DD0E1; /* Teal */
    text-align: center;
}

.hero .lead {
    color: #B39DDB; /* Lavender */
    text-align: center;
}

/* Navigation */
.navbar {
    background: linear-gradient(to right, #021338, #0D1EB8);
    width: 100%; /* Ensure full width */
}

.navbar-brand, .nav-link {
    color: white !important;
}

.nav-link:hover {
    color: #B39DDB !important; /* Lavender hover */
}

/* ... existing CSS ... */

/* Category Grid */
.category-grid {
    padding: 5rem 0;
    text-align: center;
    width: 100%; /* Ensure full width */
}

/* Sidebar styles */
.sidebar-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1040;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #021338, #0D1EB8);
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.4);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    overflow-y: auto;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}



.sidebar-close {
    background: transparent;
    border: none;
    color: #4DD0E1;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.sidebar-close:hover {
    color: #B39DDB;
}

.sidebar-nav {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.sidebar-nav-list--right {
    margin-top: auto;
}

.sidebar-nav-item {
    margin-bottom: 1rem;
}

.sidebar-nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    user-select: none;
}

.sidebar-nav-link:hover,
.sidebar-nav-link:focus {
    background-color: rgba(77, 208, 225, 0.2);
    color: #B39DDB;
    outline: none;
}

.burger-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px; /* was 24px */
    height: 22px; /* was 18px */
    padding: 0;
    user-select: none;
}

.burger-line {
    width: 100%;
    height: 3.5px; /* was 3px */
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-toggle.active .burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg); /* adjusted for new height */
}

.burger-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg); /* adjusted for new height */
}

@media (min-width: 992px) {
    .sidebar {
        display: none !important;
    }
    .sidebar-overlay {
        display: none !important;
    }
}

.category-grid .card-link {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}
.category-grid .card {
    border: none;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-border 2s infinite;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 250px;
    aspect-ratio: 1 / 1;
    padding: 1.5rem;
}

.category-grid .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
}

.category-grid .card-title {
    color: #4DD0E1; /* Teal */
    margin: 0.5rem 0;
    display: block; /* Keep as block for text */
    line-height: 1.2; /* Adjust for readability */
    text-align: center; /* Ensure horizontal centering */
}

.category-grid .card-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #4DD0E1;
    transition: transform 0.3s ease;
    display: block; /* Keep as block within flex */
}

.category-grid .card:hover .card-icon {
    transform: scale(1.2);
}

.category-grid .row {
    display: flex; /* Use flex for wrapping */
    flex-wrap: wrap; /* Allow cards to wrap */
    /* Distribute space evenly */
    gap: 1rem; /* Add gap to prevent overlap and ensure spacing */
    width: 100%; /* Ensure full width */
    margin: 0; /* Reset margin */
}

.category-grid .col-md-4 {
    flex: 1 1 auto; /* Allow cards to grow and shrink */
    max-width: 100%; /* Full width on small screens */
    margin-bottom: 2rem; /* Vertical spacing */
}

@media (min-width: 768px) {
    .category-grid .col-md-4 {
        flex: 0 0 calc(33.33% - 0.666rem); /* Three columns with gap adjustment */
        max-width: calc(33.33% - 0.666rem); /* Match flex basis */
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .category-grid .col-md-4 {
        flex: 0 0 calc(50% - 0.5rem); /* Two columns with gap adjustment */
        max-width: calc(50% - 0.5rem); /* Match flex basis */
    }
}

@media (max-width: 575px) {
    .category-grid .col-md-4 {
        flex: 0 0 100%; /* Full width on extra-small screens */
        max-width: 100%; /* Ensure no overlap */
    }
}

/* ... rest of the CSS ... *//* Search Bar */
.search-bar .form-control {
    background-color: rgba(255,255,255,0.1);
    color: white;
    border-color: #4DD0E1; /* Teal border */
}

.search-bar .form-control::placeholder {
    color: #B39DDB; /* Lavender placeholder */
}

/* Filter Section */
.filter-section {
    background: rgba(179,157,219,0.2); /* Lavender tint */
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.filter-checkbox {
    display: none;
}

.filter-label {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid #4DD0E1; /* Teal border */
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.filter-checkbox:checked + .filter-label {
    background-color: #4DD0E1; /* Teal when checked */
    transform: scale(1.1);
}

.filter-checkbox:checked + .filter-label::after {
    content: '\f00c'; /* Font Awesome checkmark */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 10px;
}

/* Results */
.results .card {
    border: none;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.results .card:hover {
    transform: translateY(-5px);
}

.results .card-title {
    color: #4DD0E1; /* Teal */
}

.star-rating .fas {
    color: #FF8C66; /* Darker peach */
    animation: glow 1.5s infinite;
}

/* Buttons */
.btn-peach {
    background-color: #FF8C66; /* Darker peach */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.btn-peach:hover {
    background-color: #FF7043;
}

.btn-green {
    background-color: #21b573;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: background-color 0.3s;
    box-shadow: 0 2px 6px rgba(33,181,115,0.10);
}

.btn-green:hover, .btn-green:focus {
    background-color: #189e5d;
    color: #fff;
}

.btn-blue {
    background-color: #4DD0E1;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: background-color 0.3s;
    box-shadow: 0 2px 6px rgba(77,208,225,0.10);
}

.btn-blue:hover, .btn-blue:focus {
    background-color: #3BA8B8;
    color: #fff;
}

.dashboard-hero-buttons-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (min-width: 768px) {
    .dashboard-hero-buttons-wrapper {
        flex-direction: row;
        gap: 2rem;
        align-items: center;
        justify-content: center;
    }
    .dashboard-hero-buttons-wrapper > div, .dashboard-hero-buttons-wrapper > a {
        flex-shrink: 0;
    }
}
.dashboard-btn {
  width: 210px;
  min-width: 160px;
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
}
.dashboard-hero-title, .dashboard-hero-lead {
    text-align: center;
}

/* Provider and Rating Forms */
.provider-form, .rating-container {
    max-width: 600px;
    margin: 50px auto;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    text-align: center;
}

.provider-form h2, .rating-container h2 {
    color: #4DD0E1;
    text-align: center;
    margin-bottom: 1rem;
}

.schedule-field {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.form-control {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid #4DD0E1;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
}

.form-control::placeholder {
    color: #B39DDB;
}

.star-input {
    display: none;
}

.star-label {
    font-size: 2rem;
    color: #FF8C66;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.star-input:checked + .star-label {
    transform: scale(1.2);
}

/* Footer */
footer {
    background-color: #021338;
    color: white;
    padding: 20px 0;
    text-align: center;
    width: 100%; /* Ensure full width on iPad */
}

/* Animations */
@keyframes glow {
    0% { text-shadow: 0 0 5px #FF8C66; }
    50% { text-shadow: 0 0 10px #FF8C66; }
    100% { text-shadow: 0 0 5px #FF8C66; }
}

@keyframes pulse-border {
    0% { border-color: rgba(77,208,225,0.3); }
    50% { border-color: rgba(77,208,225,0.8); }
    100% { border-color: rgba(77,208,225,0.3); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-fadein {
    animation: fadein 1s ease-in-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-slideup {
    animation: slideup 1s ease-in-out;
    opacity: 0;
    transform: translateY(20px);
    animation-fill-mode: forwards;
}

@keyframes slideup {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-slideup:nth-child(1) { animation-delay: 0.2s; }
.animate-slideup:nth-child(2) { animation-delay: 0.4s; }
.animate-slideup:nth-child(3) { animation-delay: 0.6s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.icon-spin:hover {
    animation: spin 1s linear infinite;
}

.tilt {
    transition: transform 0.3s ease;
}

/* Staff View */
.staff-table {
    width: 100%;
    border-collapse: collapse;
}

.staff-table th, .staff-table td {
    padding: 10px;
    border: 1px solid #4DD0E1;
    text-align: left;
}

.staff-table th {
    background-color: rgba(77, 208, 225, 0.2);
}

.btn-approve {
    background: #FF8C66;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
}

.btn-decline {
    background: #FF7043;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
}

/*PROVIDER PROFILE DETAILS PAGE*/
 .provider-profile-page {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: linear-gradient(to bottom, #0F1F2D, #1A3C6E);
    }
    .profile-container {
        flex-grow: 1;
        padding: 1rem;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
    .profile-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        margin-bottom: 1.5rem;
        backdrop-filter: blur(10px);
        position: relative;
    }
    .profile-header .edit-icon {
        position: absolute;
        top: 1rem;
        right: 1rem;
        color: #6EE7B7;
        cursor: pointer;
        font-size: 1.5rem;
        transition: color 0.3s;
    }
    .profile-header .edit-icon:hover {
        color: #34D399;
    }
    .profile-header h2 {
        color: #10B981;
        font-size: 2rem;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
    }
    .profile-header p {
        color: #6EE7B7;
        font-size: 1rem;
        margin: 0.5rem 0;
    }
    .rating-section {
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: rgba(16, 185, 129, 0.1);
        border-radius: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
    }
    .rating-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
    }
    .rating-header h3 {
        color: #10B981;
        font-size: 1.2rem;
    }
    .review-count {
        color: #6EE7B7;
        font-size: 0.9rem;
        margin-left: 1rem;
    }
    .view-all-reviews {
        color: #6EE7B7;
        cursor: pointer;
        font-size: 0.9rem;
        transition: color 0.3s, transform 0.3s;
    }
    .view-all-reviews:hover {
        color: #34D399;
        transform: translateX(5px);
    }
    .overall-rating {
        color: #F59E0B;
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    .star-rating {
        display: flex;
        font-size: 1.2rem;
    }
    .star-rating i {
        color: #6EE7B7;
        margin: 0 0.1rem;
        transition: color 0.3s;
    }
    .star-rating i.filled {
        color: #F59E0B;
    }
    .review-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 0.8rem;
        margin-bottom: 1rem;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .review-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }
    .review-card .star-rating {
        color: #F59E0B;
        font-size: 1rem;
    }
    .review-card p {
        color: white;
        margin: 0.3rem 0;
        font-size: 0.9rem;
    }
    .review-card small {
        color: #6EE7B7;
        font-size: 0.8rem;
    }
    .review-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 31, 45, 0.9);
        z-index: 1000;
        overflow-y: auto;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .review-modal-content {
        background: rgba(16, 185, 129, 0.15);
        border-radius: 15px;
        padding: 1.5rem;
        max-width: 90%;
        margin: 1rem auto;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(10px);
        position: relative;
        overflow-y: auto;
        max-height: 80vh;
        animation: fadeIn 0.3s ease-in;
    }
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    .close-modal {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        color: #6EE7B7;
        cursor: pointer;
        font-size: 1.5rem;
        transition: color 0.3s;
    }
    .close-modal:hover {
        color: #34D399;
    }
    .availability-section {
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
    }
    .availability-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
    }
    .availability-header h3 {
        color: #10B981;
        font-size: 1.2rem;
    }
    .arrow-buttons {
        display: flex;
        gap: 0.5rem;
    }
    .arrow-button {
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: #10B981;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.3rem 0.7rem;
        border-radius: 8px;
        transition: background-color 0.3s, color 0.3s;
    }
    .arrow-button:hover {
        background: rgba(16, 185, 129, 0.2);
        color: #34D399;
    }
    .availability-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(34, 197, 94, 0.05));
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    .availability-table th {
        background: linear-gradient(90deg, #0F1F2D, #1A3C6E);
        color: #10B981;
        padding: 0.8rem;
        text-align: left;
        font-weight: 600;
        border-bottom: 2px solid #10B981;
    }
    .availability-table td {
        padding: 0.7rem;
        color: white;
        border-bottom: 1px solid rgba(16, 185, 129, 0.3);
        transition: background-color 0.3s, transform 0.3s;
    }
    .availability-table td:hover {
        background-color: rgba(16, 185, 129, 0.1);
        transform: translateY(-2px);
    }
    .session-item {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        padding: 0.4rem 0.8rem;
        margin: 0.3rem 0;
        display: inline-block;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .session-item:hover {
        transform: scale(1.03);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .posts-section {
        margin-bottom: 1.5rem;
        padding: 1rem;
       
    }
    .posts-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
    }
    .posts-header h3 {
        color: #10B981;
        font-size: 1.2rem;
    }
    .view-all-posts {
        color: #6EE7B7;
        cursor: pointer;
        font-size: 0.9rem;
        transition: color 0.3s;
    }
    .view-all-posts:hover {
        color: #34D399;
    }
    .post-card {
        background: rgba(81, 255, 249, 0.33);
        border-radius: 12px;
        padding: 0.8rem;
        margin-bottom: 1rem;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
    }
    .post-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }
    .post-header {
        display: flex;
        align-items: center;
        margin-bottom: 0.8rem;
    }
    .post-avatar {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #10B981, #34D399);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 0.8rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    .post-user {
        color: #10B981;
        font-weight: bold;
        font-size: 1.1rem;
    }
    .post-time {
        color: #6EE7B7;
        font-size: 0.8rem;
    }
    .post-title {
        color: #10B981;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        font-weight: bold;
    }
    .post-content {
        color: white;
        margin-bottom: 0.8rem;
        font-size: 1rem;
    }
    .post-actions {
        display: flex;
        justify-content: space-around;
        padding: 0.5rem 0;
        border-top: 1px solid rgba(16, 185, 129, 0.2);
    }
    .post-action, .delete-post {
        background: none;
        border: none;
        padding: 0;
        color: #6EE7B7;
        cursor: pointer;
        font-size: 1.1rem;
        transition: color 0.3s, transform 0.3s;
    }
    .post-action:hover, .delete-post:hover {
        color: #34D399;
        transform: scale(1.1);
    }
    .delete-post {
        color: #FF6B6B;
    }
    .delete-post:hover {
        color: #EF4444;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .profile-container {
            padding: 0.5rem;
        }
        .profile-header {
            padding: 1rem;
        }
        .profile-header h2 {
            font-size: 1.5rem;
        }
        .profile-header p {
            font-size: 0.9rem;
        }
        .rating-section, .availability-section, .posts-section {
            padding: 0.8rem;
        }
        .rating-header h3, .availability-header h3, .posts-header h3 {
            font-size: 1rem;
        }
        .availability-table th, .availability-table td {
            padding: 0.4rem;
            font-size: 0.8rem;
        }
        .post-card {
            padding: 0.6rem;
            margin-bottom: 0.8rem;
        }
        .post-title {
            font-size: 1rem;
        }
    }
    @media (min-width: 1200px) {
        .profile-container {
            padding: 2.5rem;
        }
    }

/* Prevent horizontal scrolling and improve responsiveness */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

.dashboard-hero-buttons-wrapper {
    max-width: 100vw;
    padding-left: 15px;
    padding-right: 15px;
}

.container {
    max-width: 1140px; /* Bootstrap container max width */
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Additional responsive tweaks */
@media (max-width: 768px) {
    .dashboard-hero-buttons-wrapper {
        flex-direction: column !important;
        align-items: center !important;
    }
    .dashboard-hero-buttons-wrapper > div:first-child {
        padding-bottom: 20px;
    }
}

/* Provider profile page styles (moved from provider.css) */
.provider-profile-page .star-rating {
    display: flex;
    font-size: 1.2rem;
    justify-content: center;
    align-items: center;
}
.provider-profile-page .star-rating i {
    color: #ccc !important;
    margin: 0 0.1rem;
    transition: color 0.3s;
}
.provider-profile-page .star-rating i.filled,
.provider-profile-page .star-rating i.fa-star-half-alt.filled {
    color: #F59E0B !important;
}

/* See All Services Link */
.see-all-services-link {
    color: #4DD0E1;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #4DD0E1;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.see-all-services-link:hover {
    background-color: #4DD0E1;
    color: white !important;
}

/* Neon Green Points Symbol */
.points-symbol {
    font-family: 'Brush Script MT', 'Lucida Handwriting', cursive;
    font-style: italic;
    color: #39FF14;
    font-size: 1.1em;
    margin-right: 6px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
