@import "./variables.css";
@import "./typography.css";
@import "./utils.css";
@import "./general-mixins.css";


.border-gray-50 {
    border: 1px solid var(--color-gray-50, #a48fa5) !important;
}

.text-dark {
    color: #333 !important;
}

.text-white {
    color: #fff !important;
}

.text-danger {
    color: #d748cf !important;
}

.main-content {
    background-color: #f2f0f3 !important;
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    transition: all 0.3s ease;
}

.container-fluid {
    max-width: 1140px !important;
}

@media (min-width: 768px) {
    .main-content {
        margin-left: var(--sidebar-width);
        width: calc(100% - var(--sidebar-width));
    }

    .navbar-top {
        margin-left: var(--sidebar-width);
        width: calc(100% - var(--sidebar-width));
        left: var(--sidebar-width);
    }

    .business-footer {
        margin-left: var(--sidebar-width);
        width: calc(100% - var(--sidebar-width));
        left: var(--sidebar-width);
    }
}

@media (max-width: 767.98px) {
    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
    }

    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .navbar-top {
        width: 100% !important;
        margin-left: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .business-footer {
        width: 100% !important;
        margin-left: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .content-body {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.choices-meauty {
    --panel-primary: var(--primary-50);
    --panel-primary-lighter: rgba(232, 62, 140, 0.1);
    --panel-border-radius: 0.5rem;
    --panel-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.choices-meauty {
    margin-bottom: 0;
}

.choices-meauty__inner {
    min-height: unset;
    border-radius: var(--panel-border-radius);
    padding: 6px 12px;
    border-color: #ced4da;
    background-color: #fff;
    transition: all 0.2s ease-in-out;
}

.choices-meauty.is-focused .choices__inner {
    border-color: var(--panel-primary);
    box-shadow: 0 0 0 0.25rem rgba(232, 62, 140, 0.25);
}

.choices__list--dropdown {
    border-radius: var(--panel-border-radius);
    margin-top: 6px;
    border: none;
    box-shadow: var(--panel-box-shadow);
    overflow: hidden;
}

.choices__list--dropdown .choices__item--selectable.is-meauty-highlighted {
    background-color: var(--panel-primary-lighter);
    border-left: 3px solid var(--panel-primary);
}

.choices__list--dropdown .choices__item--selectable {
    border-left: 3px solid transparent;
    padding-left: 12px;
    transition: all 0.15s ease;
}

.choices__list--dropdown .choices__item--selectable:hover {
    background-color: var(--panel-primary-lighter);
    border-left: 3px solid rgba(232, 62, 140, 0.5);
}

.choices__list--dropdown .choices__item {
    padding: 10px 15px;
}

.choices[data-type*="select-one"] .choices__inner {
    padding-bottom: 6px;
}

.choices[data-type*="select-one"]::after {
    border-color: #495057 transparent transparent;
    right: 16px;
}

.choices[data-type*="select-one"].is-open::after {
    margin-top: 0;
}

.choices__placeholder {
    opacity: 0.65;
}

/* Compact Size */
.choices-meauty.choices-meauty-sm .choices__inner {
    min-height: 32px;
    padding: 3px 10px;
    font-size: 0.875rem;
}

/* Form Group within Card Styling */
.card .form-group .choices-meauty .choices__inner {
    background-color: #f8f9fa;
}

/* FullCalendar Customization */
.fc {
    --panel-primary: var(--primary-50);
    --panel-primary-light: rgba(232, 62, 140, 0.15);
    --panel-dark: #333;
}

.fc .fc-button-primary {
    background-color: var(--panel-primary);
    border-color: var(--panel-primary);
}

.fc .fc-button-primary:hover {
    background-color: #d5317b;
    border-color: #c92e72;
}

.fc .fc-button-primary:disabled {
    background-color: #e068a1;
    border-color: #e068a1;
}

.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active {
    background-color: #c92e72;
    border-color: #bd2c6c;
}

.fc-daygrid-day.fc-day-today {
    background-color: var(--panel-primary-light) !important;
}

.fc-daygrid-event {
    border-radius: 20px !important;
    padding: 2px 6px !important;
    font-size: 0.8em !important;
}

.fc-h-event {
    background-color: var(--panel-primary) !important;
    border-color: var(--panel-primary) !important;
}

.fc-toolbar-title {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
}

.fc-day-past {
    opacity: 0.6;
}

/* Authentication Layout Styles */
.auth-layout {
    justify-content: center;
    align-items: center;
    background: #fff;
    overflow: hidden;
    height: 100vh;
    display: flex;
    min-height: 100vh;
    position: relative;
    flex-direction: column;
}

.auth-container {
    max-width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    width: 100%;
    color: var(--white, white);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

/* Yeni eklenen auth-content-wrapper */
.auth-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70vh;
    padding: 0 20px;
    z-index: 10;
    transition: all 0.3s ease;
    position: relative;
}

/* Auth Background Elements */
.auth-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/authentication/authentication-background.png");
    background-size: cover;
    background-position: center;
    z-index: -3;
    transition: background-image 0.5s ease-in-out;
}

/* Arka plan için hafif siyah overlay */
.auth-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -2;
}

/* Slayt 2 ve 3 için arka plan stili */
.slide-2-bg {
    background-image: url("../images/authentication/background-slide-2.png");
}

.slide-3-bg {
    background-image: url("../images/authentication/background-slide-3.png");
}

.auth-overlay {
    position: absolute;
    bottom: -20%;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/authentication/linear-authentication.png");
    background-size: cover;
    background-position: bottom center;
    z-index: -1;
}

/* Logo and Description */
.logo-container {
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
}

.logo {
    max-width: 120px;
    margin: 0 auto 1rem auto;
    width: 120px;
    height: 120px;
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--white, white);
}

.app-description {
    font-family: var(--primary-font, "Poppins", sans-serif);
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    max-width: 500px;
    margin: 0 auto 3rem auto;
    color: var(--white, white);
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Navbar Styles */

.navbar .nav-link {
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar .nav-link:hover {
    color: var(--primary-50) !important;
}

/* Components.css - 4e4 Component Styles */

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    z-index: 9999999999999999999999999999999 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar .nav-link {
    padding: 0.5rem 1rem;
    color: var(--color-text-primary);
    font-weight: var(--font-weight-medium);
    transition: color var(--duration-fast) var(--easing-default);
}

.navbar .nav-link.active {
    color: var(--primary-50) !important;
}

.navbar .nav-link:hover {
    color: var(--primary-50) !important;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border: 2px solid white;
    box-shadow: var(--shadow-sm);
}

.user-info {
    line-height: 1.2;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    margin-top: -60px !important;
}

.hero-content {
    max-width: 500px;
    z-index: 10;
}

.hero-logo {
    height: 70px;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.carousel-inner,
.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.search-container-user {
    max-width: 700px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--white);
}

.search-bar-form-control {
    padding-left: 50px !important;
    color: #fff !important;
}

.search-bar-form-control::placeholder {
    color: var(--color-gray-10, #f2f0f3);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
}

.search-container::placeholder {
    color: var(--white) !important;
}

.search-container .form-control {
    height: 54px;
}

.search-container .form-control:focus {
    box-shadow: none;
}

.search-container .input-group-text {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.search-container .dropdown .btn {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    height: 54px;
}

.btn {
    border-radius: 12px !important;
    height: 48px !important;
    font-weight: 600 !important;
}

.btn-primary:checked + .btn,
.btn-primary.active,
.btn-primary.show,
.btn-primary:first-child:active,
:not(.btn-check) + .btn-primary:active {
    background-color: var(--primary-60) !important;
    border-color: var(--primary-60) !important;
}

.btn-outline-secondary {
    border-color: var(--color-gray-90) !important;
    color: var(--color-gray-90) !important;
    height: 48px !important;
    padding: 0 16px !important;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
    background-color: #47D653 !important;
    border-color: var(--primary-60) !important;
}

.btn-outline-secondary-text {
    color: var(--color-gray-90, #574856);
}

.dropdown {
    z-index: 999999 !important;
}

.dropdown-toggle::after {
    margin-left: 8px;
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--primary-50) !important;
}

.carousel-indicators {
    margin-bottom: 1.5rem;
    z-index: 5;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    margin: 0 6px;
}

.carousel-indicators .active {
    background-color: white;
}

/* Pagination */
.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    text-decoration: none;
    border: 1px solid var(--color-border-light);
    background-color: white;
}

.pagination-number.active {
    background-color: var(--color-primary-500);
    color: white;
    border-color: var(--color-primary-500);
}

.pagination-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    text-decoration: none;
    background-color: white;
    border: 1px solid var(--color-border-light);
}

.pagination-arrow.disabled {
    color: var(--color-text-disabled);
    pointer-events: none;
}

.current-page-number {
    background-color: var(--color-primary-500);
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-medium);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .hero-logo {
        height: 50px;
    }

    .search-container {
        max-width: 90%;
    }
}

@media (min-width: 992px) {
    .navbar .navbar-nav {
        margin-left: 2rem;
    }
}

/* Hero Section */
.hero-section {
    height: 750px;
    background-image: url("https://images.unsplash.com/photo-1562322140-8baeececf3df?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80");
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 3rem;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
}

.hero-search {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.hero-search input {
    border-radius: 30px;
    padding-left: 2.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    height: 50px;
}

.hero-search .bi-search {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

/* Nearby Salons Section */
.nearby-salons-container {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.section-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.nearby-salons-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* Salon Card Styles */
.salon-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.salon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 180px;
    object-fit: cover;
}

.salon-owner {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.salon-owner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salon-rating {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 0.25rem 0.5rem;
    display: flex;
    align-items: center;
}

.salon-rating i {
    color: #eec745 !important;
    margin-right: 5px;
}

.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}

.salon-distance {
    color: var(--primary-50);
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

/* Pagination */
.pagination {
    margin-top: 2rem;
}

.pagination .page-link {
    color: #343a40;
    border: none;
    margin: 0 3px;
    border-radius: 5px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pagination .page-item.active .page-link {
    color:var(--primary-50)!important;
}

/* Footer */
.footer {
    margin-top: auto;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    height: 40px !important;
    padding-top: 10px !important;
}

.social-icons i {
    font-size: 1.2rem;
}

.footer-links a:hover {
    color:  var(--primary-50) !important;
}

.social-icons a {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-icons a:hover img {
    filter: drop-shadow(0 4px 6px rgba(232, 62, 140, 0.3));
}

.social-icons a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle,
        rgba(232, 62, 140, 0.2) 0%,
        rgba(232, 62, 140, 0) 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
    z-index: -1;
}

.social-icons a:hover::before {
    opacity: 1;
}

@media (max-width: 767px) {
    .footer-links {
        margin: 12px 0;
        width: 100%;
    }

    .footer-links a {
        margin-bottom: 8px;
    }

    .social-icons {
        margin-top: 8px;
        width: 100%;
    }

    .social-icons a {
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media (max-width: 576px) {
    .footer-links a {
        display: block !important;
        margin: 8px auto !important;
        text-align: center;
    }
}

/* Utility Classes */
.text-primary-50 {
    color: var(--primary-50) !important;
}

.bg-primary-50 {
    background-color: var(--primary-50) !important;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }

    .salon-card .card-img-top {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .nearby-salons-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-button {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .salon-card .card-img-top {
        height: 140px;
    }

    .salon-owner {
        width: 40px;
        height: 40px;
    }
}

/* Dinamik içerik için yeni sınıflar */
.compact-logo {
    margin-bottom: 1rem;
}

.compact-logo .logo {
    max-width: 90px;
    width: 90px;
    height: 90px;
}

.compact-description {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 2rem;
}

.compact-buttons {
    transform: scale(0.95);
}

/* Authentication Buttons Styles */
.auth-buttons {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: all 0.3s ease;
}

.auth-buttons-row {
    display: flex;
    gap: 16px;
    width: 100%;
    margin-bottom: 16px;
}

.button-container {
    flex: 1;
    display: flex;
}

.btn-link {
    text-decoration: none;
    display: block;
    width: 100%;
}

.auth-buttons-row .btn {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
    box-sizing: border-box;
}

.auth-buttons-bottom {
    margin-top: 0;
    width: 100%;
}

.auth-buttons-bottom .btn {
    height: 50px;
    width: 100%;
}

/* Custom Button Styles */
.btn-auth-register {
    border-radius: 12px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.2);

    /* button effects */
    box-shadow: 0px 1.127px 3.381px 0px rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(29.01752471923828px);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*register start*/

.register-container {
    height: 100vh;
    overflow: hidden;
}

.register-image-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.register-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.auth-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(
        to top,
        rgba(255, 0, 127, 0.4) 0%,
        rgba(255, 0, 127, 0) 100%
    );
    z-index: 2;
}

.linear-overlay {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    z-index: 3;
}

.register-container {
    height: 100vh;
    overflow: hidden;
}

.register-image-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.register-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.auth-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.auth-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(
        to top,
        rgba(255, 0, 127, 0.4) 0%,
        rgba(255, 0, 127, 0) 100%
    );
    z-index: 2;
}

.linear-overlay {
    position: absolute;
    width: 100%;
    height: 80%;
    bottom: 0;
    left: 0;
    z-index: 3;
}

.register-form-container {
    padding: 2rem;

    margin: 0 auto;
}

@media (max-width: 768px) {
    .register-form-container {
        max-width: 100%;
        padding: 1.5rem;
    }
}

/*register end*/
.btn-auth-login {
    border-radius: 12px;
    border: 1px solid var(--helper-color-white-stroke, #fff);
    background: rgba(155, 190, 235, 0.7);
    box-shadow: 0px 1.127px 3.4px 0px rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(29.01752471923828px);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-auth-business {
    border-radius: 12px;
    border: 1px solid var(--helper-color-white-stroke, #fff);
    background: linear-gradient(
        143deg,
        rgba(255, 255, 255, 0.37) -3.54%,
        rgba(114, 114, 114, 0.42) 95.15%
    );
    box-shadow: 0px 1.127px 3.381px 0px rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(29.01752471923828px);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-auth-register:hover,
.btn-auth-login:hover,
.btn-auth-business:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: var(--white, white) !important;
}

/* Carousel styles */
#authCarousel {
    width: 100%;
    height: 100vh;
}

@media (max-width: 768px) {
    #authCarousel {
        height: 95vh;
        margin-top: -5vh;
    }
}

.carousel-item {
    height: 100vh;
    transition: transform 0.6s ease-in-out;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
}

/* Carousel indicators */
.carousel-indicators {
    bottom: 30px;
    position: absolute;
    z-index: 30;
    width: auto !important;
    height: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    opacity: 0.7;
}

.carousel-indicators button.active {
    background-color: var(--white, white);
    transform: scale(1.2);
    opacity: 1;
}

/* Register Page Styles */
.register-container {
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    height: 100vh;
}

.register-image-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.register-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.register-form-container {
    padding: 2rem;
    color: var(--dark, #212529);
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.form-scrollable {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

/*verification start*/

.verification-container {
    height: 100vh;
    overflow: hidden;
}

.verification-image-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.verification-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(53, 49, 49, 0.35);
    z-index: 1;
}

.auth-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(
        to top,
        rgba(255, 0, 127, 0.4) 0%,
        rgba(255, 0, 127, 0) 100%
    );
    z-index: 2;
}

.linear-overlay {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    z-index: 3;
}

.verification-form-container {
    width: 80%;
    max-width: 500px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.verification-heading {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.verification-subheading {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.verification-code-input {
    height: 56px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
}

.empty-input {
    border: 1px solid #ddd;
    background: #f9d5f9 !important;
}

.verification-code-container {
    margin-top: 20px;
    margin-bottom: 20px;
}

.btn-group-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-group-wrapper .btn,
.btn-group-wrapper a {
    flex: 1;
}

a.disabled {
    color: #6c757d;
    pointer-events: none;
    text-decoration: none;
}

@media (max-width: 768px) {
    .verification-form-container {
        width: 90%;
        padding: 1.5rem;
    }

    .verification-heading {
        font-size: 1.5rem;
    }

    .verification-subheading {
        font-size: 0.9rem;
    }

    .verification-code-input {
        height: 38px;
        font-size: 1rem;
    }
}

/*verification end*/
/* Scrollbar styling */
.form-scrollable::-webkit-scrollbar {
    width: 8px;
}

.form-scrollable::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.form-scrollable::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.form-scrollable::-webkit-scrollbar-thumb:hover {
    background: #67AE6E;
}

.register-logo {
    max-width: 240px;
    margin-bottom: 1.5rem;
}

.register-heading {
    font-size: 32px;
    font-weight: 700;
    color: #30272f;
    margin-bottom: 0.5rem;
}

.register-subheading {
    font-size: 16px;
    color: #8d758d;
    margin-bottom: 1.5rem;
}

/* Form styling */

.form-label {
    font-weight: 500;
    font-size: 14px;
    color: var(--gray-700, #495057);
}

/* Password field with eye icon */
.password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #a48fa5;
}

/* Profile Upload Section */
.profile-upload-container {
    border: 1px dashed var(--secondary-50) !important;
    border-radius: 10px;
    padding: 1rem;
    background-color: #fff;
}

.profile-icon {
    font-size: 2rem;
    color: var(--primary-50, #d748cf);
}

.upload-link {
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    width: 100% !important;
    text-align: left;
}

.file-requirements {
    font-size: 12px;
    text-align: left;
    width: 100%;
}

/* Terms Container */
.terms-container {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.form-check-input {
    border-color: var(--primary-50) !important;
}

.form-check-input:checked {
    background-color: var(--primary-50, #d748cf);
    border-color: var(--primary-50, #d748cf);
}

/* Form-check-label için özel stil ekliyorum */
.form-check-label {
    margin-left: 10px;
}

.terms-text {
    font-size: 14px;

    width: 100%;
    text-align: left;
}

@media (max-width: 768px) {
    .terms-text {
        display: block;
    }
}

/* Button styles */
.btn-primary {
    background-color: var(--primary-50) !important;
    border-color: var(--primary-50) !important;
    height: 48px !important;
    border-radius: 8px;
}

.btn-light {
    background-color: #fff;
    border-color: #635162;
    color: #212529;
    height: 48px;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: #67AE6E;
    border-color: #67AE6E;
}
/* Button Variants - Primary */
.btn-primary {
    background-color: #67AE6E!important;
    color: white;
    border: 1px solid #67AE6E!important;
  }
  
  .btn-primary:hover {
    background-color: #67AE6E!important;
    border-color: #67AE6E!important;
  }
  
  .btn-primary:active {
    background-color: #67AE6E!important;
    border-color: #67AE6E!important;
  }
  
  .btn-primary:disabled {
    background-color: #67AE6E!important;
    border-color: #67AE6E!important;
    cursor: not-allowed;
    opacity: 0.7;
  }
  
/* Responsive adjustments */
@media (max-width: 767.98px) {
    .auth-container {
        padding: 0rem;
        /*       padding-bottom: 5rem; */
    }

    .logo {
        max-width: 100px;
    }

    .logo-text {
        font-size: 28px;
    }

    .app-description {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 2rem;
    }

    .compact-logo .logo {
        max-width: 80px;
        width: 80px;
        height: 80px;
    }

    .compact-description {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 1.5rem;
    }

    .register-form-container {
        padding: 1.5rem;
        height: auto;
        min-height: 100vh;
    }

    .register-logo {
        max-width: 180px;
        margin: 0 auto 1.5rem auto;
    }

    .register-heading,
    .register-subheading {
        text-align: center;
    }

    .auth-overlay {
        height: 50%;
    }

    .auth-buttons-row {
        gap: 12px;
    }

    .auth-buttons-row .btn,
    .auth-buttons-bottom .btn {
        height: 46px;
    }
}

@media (max-width: 576px) {
    .app-description {
        font-size: 22px;
        line-height: 28px;
    }

    .compact-description {
        font-size: 18px;
        line-height: 24px;
    }

    .logo {
        max-width: 80px;
        width: 80px;
        height: 80px;
    }

    .compact-logo .logo {
        max-width: 60px;
        width: 60px;
        height: 60px;
    }

    .auth-buttons .btn {
        font-size: 14px;
    }

    .auth-buttons-row {
        gap: 10px;
    }

    .auth-buttons-row .btn,
    .auth-buttons-bottom .btn {
        height: 42px;
    }
}

/* Utility Classes */
/* Text Color Utilities */
/* Primary Color Variants */
.text-primary-50 {
    color: var(--primary-50) !important;
}

.text-primary-light {
    color: var(--primary-light, #e574cf) !important;
}

.text-primary-dark {
    color: var(--primary-dark, #67AE6E) !important;
}

/* Basic Colors */
.text-white {
    color: var(--white) !important;
}

.text-black {
    color: var(--black) !important;
}

.text-light {
    color: var(--light) !important;
}

/* Gray Palette */
.text-gray-50 {
    color: var(--gray-50) !important;
}

.text-gray-100 {
    color: var(--gray-100) !important;
}

.text-gray-200 {
    color: var(--gray-200, #e9ecef) !important;
}

.text-gray-300 {
    color: var(--gray-300, #dee2e6) !important;
}

.text-gray-400 {
    color: var(--gray-400, #ced4da) !important;
}

.text-gray-500 {
    color: var(--gray-500, #adb5bd) !important;
}

.text-gray-600 {
    color: var(--gray-600, #6c757d) !important;
}

.text-gray-700 {
    color: var(--gray-700, #495057) !important;
}

.text-gray-800 {
    color: var(--gray-800, #635162) !important;
}

.text-gray-900 {
    color: var(--gray-900, #212529) !important;
}

/* State Colors */
.text-success {
    color: var(--success, #28a745) !important;
}

.text-danger {
    color: var(--danger, #dc3545) !important;
}

.text-warning {
    color: var(--warning, #ffc107) !important;
}

.text-info {
    color: var(--info, #17a2b8) !important;
}

/* Modal Styles */
.modal-backdrop {
    z-index: -1 !important;
}

.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.privacy-modal.show {
    opacity: 1;
    visibility: visible;
}

.privacy-modal-dialog {
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.privacy-modal.show .privacy-modal-dialog {
    transform: translateY(0);
}

.privacy-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200, #e9ecef);
    background-color: white;
}

.privacy-modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark, #212529);
    margin: 0;
    display: flex;
    align-items: center;
    text-align: left;
}

.privacy-modal-title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--primary-20);
    border-radius: 8px;
    margin-right: 16px;
}

.privacy-modal-title-icon i {
    color: var(--primary-60);
    font-size: 24px;
}

.privacy-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-600, #6c757d);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color 0.2s;
}

.privacy-modal-close:hover {
    color: var(--dark, #212529);
}

.privacy-modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: calc(90vh - 140px);
}

/* Modal scrollbar styling */
.privacy-modal-body::-webkit-scrollbar {
    width: 8px;
}

.privacy-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.privacy-modal-body::-webkit-scrollbar-thumb {
    background: #d748cf;
    border-radius: 4px;
}

.privacy-modal-body::-webkit-scrollbar-thumb:hover {
    background: #67AE6E;
}

.privacy-modal-footer {
    display: flex;
    justify-content: center;
    padding: -50px 24px;
    background-color: white;
    border-top: 1px solid var(--gray-200, #e9ecef);
}

.privacy-modal-footer .btn {
    min-width: 200px;
    height: 50px;
    border-radius: 8px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark, #212529);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.privacy-heading-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    color: var(--primary-100);
    border-radius: 4px;
    margin-right: 12px;
    font-size: 14px;
    font-weight: 700;
}

.privacy-content {
    color: var(--gray-700, #495057);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    margin-left: 40px;
    text-align: left;
}

.privacy-content p {
    margin-bottom: 16px;
}

.privacy-section {
    margin-bottom: 24px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.register-container {
    height: 100vh;
    overflow: hidden;
}

.pagination-text-content {
    border-radius: 8px;
    border: 0.6px solid var(--color-gray-60, #8d758d);
    background: #fff;
}

.pagination-text-content-span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700, #495057);
}

.pagination-text-content-span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700, #495057);
}

.pagination-text-content-span-2 {
    font-size: 14px;
    font-weight: 600;
    color: #8d758d;
}

/* Style.css - 4e4 Main Stylesheet */

/* 
 * This is the main CSS file that should be loaded last to ensure proper cascading.
 * It contains any styles not covered in the more specific files.
 */

/* Custom page styles */
.page-header {
    padding: var(--space-8) 0;
    background-color: var(--color-background-secondary);
    border-bottom: 1px solid var(--color-border-light);
}

.page-title {
    margin-bottom: var(--space-2);
    color: var(--color-text-primary);
}

.page-description {
    color: var(--color-text-secondary);
    max-width: 600px;
}

/* Custom button styles */
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2);
    border-radius: 50%;
    width: 36px;
    height: 36px;
}

.btn-icon-sm {
    width: 30px;
    height: 30px;
    padding: var(--space-1);
}

.btn-icon-lg {
    width: 48px;
    height: 48px;
    padding: var(--space-3);
}

/* Cards custom styling */
.card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: transform var(--duration-normal) var(--easing-default),
        box-shadow var(--duration-normal) var(--easing-default);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-title {
    color: var(--color-text-primary);
    font-weight: var(--font-weight-semibold);
}

.card-text {
    color: var(--color-text-secondary);
}

/* Custom avatar sizes */
.avatar-xs {
    width: 24px;
    height: 24px;
}

.avatar-sm {
    width: 32px;
    height: 32px;
}

.avatar-md {
    width: 48px;
    height: 48px;
}

.avatar-lg {
    width: 64px;
    height: 64px;
}

.avatar-xl {
    width: 96px;
    height: 96px;
}

/* Status indicators */
.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: var(--space-2);
}

.status-active {
    background-color: var(--color-success);
}

.status-pending {
    background-color: var(--color-warning);
}

.status-inactive {
    background-color: var(--color-error);
}

/* Custom animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn var(--duration-normal) var(--easing-default);
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slide-up {
    animation: slideUp var(--duration-normal) var(--easing-default);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Custom form styling */
.custom-input-icon {
    position: relative;
}

.custom-input-icon i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-tertiary);
}

.custom-input-icon.icon-left i {
    left: var(--space-3);
}

.custom-input-icon.icon-right i {
    right: var(--space-3);
}

.custom-input-icon.icon-left input {
    padding-left: var(--space-8);
}

.custom-input-icon.icon-right input {
    padding-right: var(--space-8);
}

.search-bar {
    border-radius: 16px;
    border: 1px solid #f2f0f3;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0px 1.127px 3.381px 0px rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(29.01752471923828px);
    color: #f2f0f3;
}

.search-bar::placeholder {
    color: #f2f0f3;
}

.filter-button {
    border-radius: 12px;
}

.list-group-item.active {
    color: var(--color-primary-70) !important;
    font-weight: 600;
    line-height: 16px;
}

.dropdown-menu {
    z-index: 9999999999999999999999 !important;
}

.bg-primary {
    background-color: var(--primary-70) !important;
}

.btn-outline-secondary:hover {
    color: var(--primary-70) !important;
}

@media (max-width: 768px) {
    .auth-layout {
        height: auto !important;
    }

    .auth-container {
        height: auto !important;
    }

    .register-container {
        height: auto !important;
    }
}

.salon-detail-sidebar-button {
    border-radius: 12px;
    background: #e8e2e8 !important;
    display: flex;
    padding: 8px 12px;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border: none !important;
}

.salon-detail-sidebar-button img {
    width: 24px;
    height: 24px;
}

.button-medium-medium {
    font-size: 14px;
    font-weight: 500;
}

.text-gray-70 {
    color: #766075 !important;
}

.hours {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--color-gray-100, #30272f);
}

.btn-light {
    background-color: #e8e2e8 !important;
}

/* Staff Avatar Scrollbar */
.staff-avatars {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.staff-avatars::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.staff-avatar img {
    transition: transform 0.2s ease;
}

.staff-avatar:hover img {
    transform: scale(1.05);
}

/* Gallery hover effects */
.gallery-hover-overlay {
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-hover-overlay {
    opacity: 0.7 !important;
}

.staff-card {
    margin-bottom: 10px;
    border-radius: 12px;
}

.staff-card-inner {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    background-color: #222;
}

.staff-card-inner:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.staff-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.staff-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.staff-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    color: white;
    text-align: center;
    border-bottom: 1px solid var(--color-gray-20, #e8e2e8);
    box-shadow: 0px 1.127px 3.381px 0px rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(29.01752471923828px);
    -webkit-backdrop-filter: blur(29.01752471923828px);
}

/* Staff Card end*/

/* Navbar start */
@media (max-width: 768px) {
    .nav-logo {
        width: 160px !important;
        object-fit: contain !important;
        z-index: 9999999999999999999999 !important;
    }

    .navbar-collapse {
        border-radius: 10px;
        padding: 15px;
        margin-top: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        transition: all 0.3s ease-in-out;
    }

    .navbar-nav {
        padding-bottom: 10px;
    }

    .nav-item {
        margin-bottom: 5px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }
}

.navbar {
    background-color: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.navbar-white {
    background-color: #ffffff !important;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

.navbar .nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.user-info {
    line-height: 1.2;
}

.z-1100 {
    z-index: 1100;
}

@media (min-width: 992px) {
    .navbar .navbar-nav {
        margin-left: 2rem;
    }
}

/* Animasyon iyileştirmeleri */
.navbar-collapse.collapsing {
    height: auto;
    transition: all 0.35s ease;
    overflow: hidden;
}

.navbar-collapse.show {
    transition: all 0.35s ease;
}

/* Scroll sonrası renk değişimi için */
.navbar.scrolled .nav-text,
.navbar.scrolled .nav-icon {
    color: #212529 !important;
}

/* Logo değişimi için */
.light-logo,
.dark-logo {
    transition: opacity 0.3s ease;
}

.navbar-white .light-logo {
    display: none !important;
}

.navbar-white .dark-logo {
    display: inline-block !important;
}

.navbar.scrolled .light-logo {
    display: none !important;
}

.navbar.scrolled .dark-logo {
    display: inline-block !important;
}

/* Navbar end */

/*user home start*/

.search-box .input-group {
    border-radius: 12px;
    overflow: hidden;
}

.search-box .form-control:focus {
    box-shadow: none;
}

.form-select:focus {
    box-shadow: none;
}

.bg-gray-50 {
    background-color: var(--color-gray-50) !important;
}

.btn-outline-primary {
    color: var(--panel-primary);
    border-color: var(--panel-primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary.active {
    background-color: var(--panel-primary);
    border-color: var(--panel-primary);
    color: #fff;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--panel-primary);
}

.btn-light {
    background-color: var(--color-gray-50);
    border: none;
    color: var(--color-gray-70);
}

.btn-light:hover {
    background-color: var(--color-gray-100);
    color: var(--color-white);
}

.offcanvas {
    --bs-offcanvas-width: 400px;
}

/*user home end*/

/*categories start*/
.categories-page {
    min-height: 100vh;
}

.page-header {
    padding-top: 20px;
}

.display-l-semibold {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
}

.text-color-gray-10 {
    color: var(--color-gray-10);
}

.text-color-gray-20 {
    color: var(--color-gray-20);
}

.text-color-gray-30 {
    color: var(--color-gray-30);
}

.text-color-gray-40 {
    color: var(--color-gray-40);
}

.text-color-gray-50 {
    color: var(--color-gray-50);
}

.text-color-gray-60 {
    color: var(--color-gray-60);
}

.text-color-gray-70 {
    color: var(--color-gray-70);
}

.text-color-gray-80 {
    color: var(--color-gray-80);
}

.text-color-gray-90 {
    color: var(--color-gray-90);
}

.text-color-gray-100 {
    color: var(--color-gray-100);
}

.text-color-gray-200 {
    color: var(--color-gray-200);
}

.text-color-gray-300 {
    color: var(--color-gray-300);
}

.text-color-gray-400 {
    color: var(--color-gray-400);
}

.text-color-gray-500 {
    color: var(--color-gray-500);
}

.text-color-gray-600 {
    color: var(--color-gray-600);
}

.text-color-gray-700 {
    color: var(--color-gray-700);
}

.text-color-gray-800 {
    color: var(--color-gray-800);
}

.text-color-gray-900 {
    color: var(--color-gray-900);
}

.text-color-gray-1000 {
    color: var(--color-gray-1000);
}

@media (max-width: 767.98px) {
    .page-header {
        text-align: center;
    }

    .display-l-semibold {
        font-size: 28px;
    }
}

/*categories end*/

/*footer start*/
.footer {
    padding: 8px 0;
    background-color: #fff;
}

.footer-links a:hover {
    color:  var(--primary-50) !important;
}

.social-icons a {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-icons a:hover img {
    filter: drop-shadow(0 4px 6px rgba(232, 62, 140, 0.3));
}

.social-icons a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle,
        rgba(232, 62, 140, 0.2) 0%,
        rgba(232, 62, 140, 0) 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
    z-index: -1;
}

.social-icons a:hover::before {
    opacity: 1;
}

@media (max-width: 767px) {
    .col-12.d-flex {
        flex-direction: column;
    }

    .footer-links {
        margin: 8px 0;
    }

    .social-icons {
        margin-top: 8px;
    }

    .social-icons a {
        margin-left: 10px;
        margin-right: 10px;
    }
}

/*footer end*/

/*notifications start*/
.notifications-page {
    min-height: 80vh;
    background-color: #f9f9f9;
}

.btn-outline-primary:hover {
    background-color:  var(--primary-50) !important;
    color: #fff !important;
}

.nav-pills .nav-link {
    color: #333 !important;
}

.nav-pills .nav-link.active {
    background-color:  var(--primary-50) !important;
    color: #fff !important;
}

/* Tab Contents */
.tab-content {
    transition: all 0.3s ease;
}

.tab-content.d-none {
    display: none !important;
}

.notification-icon {
    width: 24px;
    height: 24px;
}

/*notifications end*/

/*appointment start*/
.search-form-control {
    width: 350px !important;
    padding-left: 30px;
    position: relative;
}

.search-icon {
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    position: absolute;
    z-index: 10;
}

.search-content {
    border-radius: 12px;
    border: 1px solid var(--color-gray-50, #a48fa5);
}

.search-content .form-control {
    border: none;
    background-color: white;
    box-shadow: none;
    outline: none;
}

.search-content .form-control::placeholder {
    color: var(--color-gray-50, #a48fa5);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
}

@media (max-width: 576px) {
    .search-content .form-control {
        width: 200px !important;
    }
}

.page-link {
    color: var(--primary-50);
    border-color: var(--color-gray-20);
}

.page-item.active .page-link {
    background-color: var(--primary-50);
    border-color: var(--primary-50);
    color: white;
}

.page-link:hover {
    color: var(--primary-70);
    background-color: var(--color-gray-10);
}

/* Yıldız değerlendirme stilleri */
.stars svg {
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

.stars svg:hover {
    transform: scale(1.1);
}

.stars svg.active {
    fill: #f8a623;
}

.stars[data-rating] svg {
    fill: #e0e0e0;
}

.stars[data-rating="1"] svg:nth-child(1),
.stars[data-rating="2"] svg:nth-child(-n + 2),
.stars[data-rating="3"] svg:nth-child(-n + 3),
.stars[data-rating="4"] svg:nth-child(-n + 4),
.stars[data-rating="5"] svg:nth-child(-n + 5) {
    fill: #f8a623;
}

/*appointment end*/

/*business rating start*/
.btn-primary.disabled,
.btn-primary:disabled,
fieldset:disabled .btn-primary {
    background-color: var(--primary-20) !important;
    border-color: var(--primary-30) !important;
    color: #333 !important;
}

.appointment-card {
    border-color: var(--color-gray-20) !important;
}

.btn-primary {
    background-color: var(--primary-50);
    border-color: var(--primary-50);
}

.btn-primary:hover {
    background-color: var(--primary-60);
    border-color: var(--primary-60);
}

.btn-outline-secondary {
    border-color: var(--color-gray-20);
    color: var(--color-gray-70, #666666);
    background-color: white;
}

.btn-outline-secondary:hover {
    background-color: var(--color-gray-10, #f8f9fa);
    color: var(--color-gray-80, #333333);
}

.btn-light {
    background-color: var(--color-gray-10, #f8f9fa);
    border: 1px solid var(--color-gray-20);
    color: var(--color-gray-70, #666666);
}

.btn-light:hover {
    background-color: var(--color-gray-20);
}

.text-primary {
    color: var(--primary-50) !important;
}

.border-primary {
    border: 1px solid var(--primary-50) !important;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-outline-primary {
    border: 1px solid var(--primary-50) !important;
}

.btn-outline-primary:disabled {
    color: var(--primary-50) !important;
    border: 1px solid var(--primary-20) !important;
}

/*category start*/
.category-card-inner {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.category-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-image-container {
    width: 100%;
    height: 100%;
    background-color: #222;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card-inner:hover .category-image {
    transform: scale(1.05);
}

.category-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    border-bottom: 1px solid var(--color-gray-20, #e8e2e8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0px 1.127px 3.381px 0px rgba(255, 255, 255, 0.25) inset;
}

.category-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

/*category end*/

/*chat left start*/
.chat-container {
    height: 100vh;
    overflow: hidden;
    display: flex;
}

.chat-sidebar {
    width: 375px;
    background-color: #f2f0f3;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-top: 80px;
}
.search-chat {
    border-radius: 12px !important;
    border: 1px solid var(--color-gray-50, #a48fa5) !important;
    margin-left: 16px !important;
    margin-right: 16px !important;
}

.user-profile {
    padding: 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    flex: 1;
}

.user-name {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-bottom: 2px;
}

.user-email {
    font-size: 13px;
    color: #999;
}

.businesses-title {
    padding: 16px;
    font-weight: 600;
    font-size: 18px;
    color: #333;
}

.businesses-list {
    display: flex;
    padding: 0 16px 16px;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
}

.business-item {
    position: relative;
    display: inline-block;
}

.business-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
    overflow: hidden;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-status {
    position: absolute;
    top: 50px;
    left: 40px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4cd137;
    border: 2px solid #fff;
    z-index: 9999;
}

.business-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ff69b4;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.search-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 25px;
    border: 1px solid #eee;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
}

.search-input input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    margin-left: 8px;
    position: relative;
}

.search-input input::placeholder {
    color: #999;
}

.search-icon {
    color: #999;
    font-size: 18px;
    position: absolute;
    left: 10px;
    top: 10px;
}

.messages-title {
    padding: 0 16px 12px;
    font-weight: 600;
    font-size: 18px;
    color: #333;
}

.messages-list {
    flex: 1;
    overflow-y: auto;
    padding: 0 16px;
}

/* Pembe renk scrollbar için */
.messages-list::-webkit-scrollbar {
    width: 6px;
}

.messages-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.messages-list::-webkit-scrollbar-thumb {
    background: var(--primary-50, #d748cf);
    border-radius: 10px;
}

.messages-list::-webkit-scrollbar-thumb:hover {
    background: var(--primary-60, #be3cb4);
}

.message-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.message-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-right: 12px;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4cd137;
    border: 2px solid #fff;
}

.message-content {
    flex: 1;
}

.message-sender {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    margin-bottom: 4px;
}

.message-text {
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
}

.message-text-icon {
    margin-right: 4px;
    display: flex;
    align-items: center;
}

.message-text-icon img {
    width: 16px;
    height: 16px;
}

.message-badge {
    background-color: var(--primary-50, #d748cf);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    margin-left: auto;
}

.businesses-list::-webkit-scrollbar {
    display: none;
}

/*chat  left end*/

/*chat right start*/
.chat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    height: 100%;
    margin-top: 80px;
}

@media (max-width: 768px) {
    .chat-content {
        margin-top: 0px;
    }
}

.chat-header {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-user {
    display: flex;
    align-items: center;
}

.chat-header-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-right: 12px;
}

.chat-header-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-header-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4cd137;
    border: 2px solid #fff;
}

.chat-header-info {
    flex: 1;
}

.chat-header-name {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.chat-header-status-text {
    font-size: 13px;
    color: #4cd137;
}

.chat-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
}

.header-action-btn.email-btn {
    background-color: var(--primary-10, #f9e0f5);
    color: var(--primary-50, #d748cf);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    height: 400px;
    max-height: 60vh;
}

/* Pembe scrollbar için chat-messages için de aynı stil */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--primary-50, #d748cf);
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: var(--primary-60, #be3cb4);
}

.chat-time-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0;
    color: #999;
    font-size: 12px;
}

.chat-message-wrapper {
    display: flex;
    margin-bottom: 16px;
    max-width: 100%;
}

.user-message-wrapper {
    flex-direction: row-reverse;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    flex-shrink: 0;
}

.user-message-wrapper .chat-avatar {
    margin-right: 0;
    margin-left: 12px;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-message-content {
    display: flex;
    flex-direction: column;
    max-width: calc(100% - 48px);
}

.user-message-wrapper .chat-message-content {
    align-items: flex-end;
}

.chat-message-info {
    display: flex;
    margin-bottom: 4px;
    align-items: baseline;
}

.chat-message-name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-right: 8px;
}

.chat-message-time {
    font-size: 12px;
    color: #999;
}

.chat-message {
    display: flex;
    margin-bottom: 4px;
    max-width: 100%;
}

.other-message {
    align-self: flex-start;
}

.my-message {
    align-self: flex-end;
}

.message-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
}

.other-message .message-bubble {
    background-color: #f0f0f0;
    border-bottom-left-radius: 5px;
}

.my-message .message-bubble {
    background-color: var(--primary-50, #d748cf);
    color: #fff;
    border-bottom-right-radius: 5px;
}

.message-text {
    font-size: 14px;
    line-height: 1.4;
}

.chat-input-area {
    padding: 16px;
    background-color: #fff;
    border-top: 1px solid #eee;
    position: relative;
}

.chat-tools-container {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 80px;
    left: 16px;
    right: 16px;
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
}

.chat-tool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}

.chat-tool-header span {
    font-weight: 600;
    color: #333;
}

.tool-close-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
}

.emoji-container {
    padding: 16px;
}

.emoji-category {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.emoji {
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.emoji:hover {
    background-color: #f5f5f5;
}

.file-upload-container {
    padding: 16px;
}

.file-upload-area {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #666;
}

.file-upload-area svg {
    color: var(--primary-50, #d748cf);
    margin-bottom: 16px;
}

.file-upload-area p {
    margin-bottom: 16px;
}

.file-select-btn {
    background-color: var(--primary-50, #d748cf);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 500;
}

.chat-input-container {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 30px;
    padding: 8px 16px;
}

.chat-note-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    padding: 8px 0;
}

.chat-action-buttons {
    display: flex;
    align-items: center;
}

.chat-emoji-btn,
.chat-attachment-btn,
.chat-image-btn,
.chat-send-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-send-btn {
    color: var(--primary-50, #d748cf);
}

/*chat right end*/

/*salon gallery start*/
.salon-gallery-page {
    min-height: calc(100vh - 70px);
    background-color: #f9f9f9;
}

.gallery-hover-overlay {
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-hover-overlay {
    opacity: 0.7 !important;
}

.category-filter .btn-outline-primary {
    background-color: transparent !important;
    border-color: var(--color-gray-100) !important;
    color: var(--color-gray-700) !important;
}

.category-filter .btn-outline-primary:hover {
    background-color: var(--color-primary-50);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.gallery-card-wrapper {
    position: relative;
}

.gallery-card-wrapper .quick-view-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*salon gallery end*/

/*profile start*/
.profile-content {
    background-color: var(--white);
    overflow: hidden;
}

.profile-cover-area {
    position: relative;
}

.profile-cover-image {
    height: 200px;
    background-position: center;
    background-size: cover;
    position: relative;
    background-image: url("../../images/profile/profile-banner.png");
}

.cover-edit-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cover-edit-btn:hover {
    background-color: var(--white);
}

.profile-avatar-area {
    display: flex;
    align-items: center;
    padding: 0 2rem 1.5rem;
    position: relative;
    margin-top: -50px;
}

.profile-avatar {
    position: relative;
}

.profile-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--white);
    background-color: var(--white);
    object-fit: cover;
}

.avatar-edit-btn {
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--color-gray-10);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.avatar-edit-btn i {
    color: var(--primary-50);
}

.profile-info {
    margin-left: 1.5rem;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--color-gray-100);
}

.profile-email {
    font-size: 0.9rem;
    color: var(--color-gray-70);
    margin-bottom: 0;
}

.profile-form-area {
    padding: 0px 35px;
}

.profile-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-gray-100);
}

@media (max-width: 767.98px) {
    .profile-form-area {
        padding: 10px 8px 20px 8px;
    }
    .profile-avatar-area {
        flex-direction: column;
        text-align: center;
        padding-bottom: 1rem;
    }

    .profile-info {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/*profile end*/
/*profile notifications start*/

.notifications-list {
    max-height: 500px !important;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-50) #f0f0f0;
    border-radius: 12px;
    border: 1px solid var(--color-gray-50, #a48fa5);
}

.notifications-list::-webkit-scrollbar {
    width: 8px;
}

.notifications-list::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.notifications-list::-webkit-scrollbar-thumb {
    background-color: var(--primary-50);
    border-radius: 10px;
}

.notification-card {
    border-bottom: 1px solid #a48fa5 !important;
    padding: 12px;
    background-color: var(--white);
    transition: all 0.2s ease;
}

.notification-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.notification-time {
    display: block;
    margin-top: 5px;
    color: #6c757d;
}

/*profile notifications end*/
/*business profile start*/
.businesses-list-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 15px;
}

.businesses-list {
    display: flex;
    gap: 10px;
    padding: 5px 0;
    min-width: min-content;
}

.businesses-list::-webkit-scrollbar {
    height: 4px;
}

.businesses-list::-webkit-scrollbar-thumb {
    background-color:  var(--primary-50) !important;
    border-radius: 10px;
}

.businesses-list::-webkit-scrollbar-track {
    background-color: pink !important;
    border-radius: 10px;
}

/*business profile end*/

/* Business Dashboard Styles */
.text-primary {
    color:  var(--primary-50) !important;
}

.bg-primary-light {
    background-color: rgba(232, 62, 140, 0.15);
}

.bg-success-light {
    background-color: rgba(40, 167, 69, 0.15);
}

.bg-warning-light {
    background-color: rgba(255, 193, 7, 0.15);
}

.bg-danger-light {
    background-color: rgba(220, 53, 69, 0.15);
}

.text-gray-500 {
    color: #adb5bd !important;
}

.text-gray-600 {
    color: #6c757d !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.card {
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.progress {
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    background-color:  var(--primary-50);
}

.btn-primary {
    background-color:  var(--primary-50);
    border-color:  var(--primary-50);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #d5317b;
    border-color: #c92e72;
}

.btn-outline-primary {
    color:  var(--primary-50);
    border-color:  var(--primary-50);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary.active {
    background-color:  var(--primary-50);
    border-color:  var(--primary-50);
    color: #fff;
}

.list-group-item {
    transition: all 0.2s ease;
}

.list-group-item:hover {
    background-color: rgba(232, 62, 140, 0.05);
}

.rounded-circle {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stats Card Component */
.stats-card {
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: none;
    transition: transform 0.2s;
    overflow: hidden;
    padding: 20px;
    height: 100%;
    height: 160px;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 0;
    font-size: 1.3rem;
    color: #fff;
    border-radius: 10px;
}

.stats-icon-blue {
    background-color: #5b74ff;
}

.stats-icon-red {
    background-color: #ff4545;
}

.stats-icon-purple {
    background-color: #d748cf;
}

.stats-icon-pink {
    background-color: #ed3ba9;
}

.percentage-badge {
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 0;
    display: inline-block;
}

.percentage-badge.danger {
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
}

.percentage-badge.success {
    color: #28a745;
    background-color: rgba(40, 167, 69, 0.1);
}

.trend-line {
    height: 35px;
}

.user-profile {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}

/* Main Content related to Sidebar */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    transition: all 0.3s ease;
    width: calc(100% - var(--sidebar-width));
}

.navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
    margin-left: 0;
    width: 100%;
    position: relative;
    left: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.business-footer {
    background-color: #fff;
    padding: 16px 24px;
    text-align: center;
    font-size: 14px;
    color: #666;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
    margin-left: 0;
    width: 100%;
    position: relative;
    left: 0;
    transition: all 0.3s ease;
}

/* Responsive Sidebar */
@media (max-width: 992px) {
    .sidebar {
        width: var(--sidebar-collapsed-width);
    }

    .sidebar .sidebar-brand,
    .sidebar .nav-text,
    .sidebar .user-info,
    .submenu-icon {
        display: none;
    }

    .sidebar .sidebar-nav .nav-link {
        justify-content: center;
        padding: 12px;
    }

    .sidebar .sidebar-nav .nav-icon {
        margin-right: 0;
    }

    .user-profile {
        justify-content: center;
    }

    .user-avatar {
        margin-right: 0;
    }

    .main-content {
        margin-left: var(--sidebar-collapsed-width);
        width: calc(100% - var(--sidebar-collapsed-width));
    }

    .navbar-top {
        left: var(--sidebar-collapsed-width);
        width: calc(100% - var(--sidebar-collapsed-width));
    }

    .business-footer {
        left: var(--sidebar-collapsed-width);
        width: calc(100% - var(--sidebar-collapsed-width));
    }
}

/* ... existing code ... */

/* User Profile in Sidebar */
.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    flex: 1;
}

/* Business Layout Body Styles */
.busines-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

.content-wrapper {
    display: flex;
    flex: 1;
}

.business-search-container {
    border-radius: 12px;
}


.business-search-container-input {
    color: var(--color-gray-50, #a48fa5);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    padding-left: 50px !important;
    line-height: 20px;
    border-radius: 12px;
    border: 1px solid var(--color-gray-50, #a48fa5);
    background: #fff;
    height: 48px !important;
}

.business-search-container {
    width: 100%;
}

.business-search-container-search-icon {
    left: 14px;
    top: 50%!important;
    transform: translateY(-50%);
    color: #a48fa5;
}

.business-search-container-input:focus {
    border-color: #d748cf;
    box-shadow: 0 0 0 0.2rem rgba(215, 72, 207, 0.25);
    background: #fff;
}

@media (max-width: 767.98px) {
    .business-search-container {
        margin-bottom: 10px;
    }
}
/* Chart colors */

/* Stats card icon colors */
.stats-icon-blue {
    background-color: #5b74ff;
}

.stats-icon-red {
    background-color: #ff4545;
}

.stats-icon-purple {
    background-color: #d748cf;
}

.stats-icon-pink {
    background-color: #ed3ba9;
}

.chart-area {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.pie-chart-container {
    height: 200px;
    position: relative;
}

.pie-chart-legend {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    margin-right: 10px;
}

.legend-text {
    font-size: 14px;
    font-weight: 500;
}

.legend-value {
    margin-left: auto;
    font-weight: 700;
}

.sales-chart {
    height: 350px;
}

/* Chart colors */
.chart-pink {
    color: #d748cf;
    background-color: rgba(215, 74, 191, 0.2);
}

.chart-pink-bg {
    background-color: rgba(215, 74, 191, 0.2);
}

.chart-pink-border {
    border-color: #d748cf;
}

.chart-green {
    color: #28a745;
    background-color: rgba(40, 167, 69, 0.2);
}

.chart-green-bg {
    background-color: rgba(40, 167, 69, 0.2);
}

.chart-blue {
    color: #007bff;
    background-color: rgba(0, 123, 255, 0.2);
}

.chart-blue-bg {
    background-color: rgba(0, 123, 255, 0.2);
}

.expenses-legend {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

.expenses-legend-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.expenses-legend-color {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    margin-right: 10px;
}

.expenses-legend-left {
    display: flex;
    align-items: center;
}

.expenses-legend-text {
    color: var(--color-gray-60, #8d758d);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.expenses-legend-value {
    font-weight: 700;
    color: var(--primary-50);
}

.chart-pink {
    color: #d748cf;
    background-color: rgba(215, 74, 191, 0.2);
}

.chart-pink-bg {
    background-color: rgba(215, 74, 191, 0.2);
}

.chart-pink-border {
    border-color: #d748cf;
}

.chart-green {
    color: #28a745;
    background-color: rgba(40, 167, 69, 0.2);
}

.chart-green-bg {
    background-color: rgba(40, 167, 69, 0.2);
}

.chart-blue {
    color: #007bff;
    background-color: rgba(0, 123, 255, 0.2);
}

.chart-blue-bg {
    background-color: rgba(0, 123, 255, 0.2);
}

.bg-primary-light {
    background-color: rgba(232, 62, 140, 0.15);
}

.bg-success-light {
    background-color: rgba(40, 167, 69, 0.15);
}

.bg-warning-light {
    background-color: rgba(255, 193, 7, 0.15);
}

.bg-info-light {
    background-color: rgba(23, 162, 184, 0.15);
}

.bg-secondary-light {
    background-color: rgba(108, 117, 125, 0.15);
}

.text-primary {
    color:  var(--primary-50) !important;
}

.text-success {
    color: #28a745 !important;
}

.text-warning {
    color: #ffc107 !important;
}

.text-info {
    color: #17a2b8 !important;
}

.text-secondary {
    color: #6c757d !important;
}

.text-gray-600 {
    color: #6c757d !important;
}

.card {
    transition: all 0.3s ease;
}

.business-search-container {
    position: relative;
    width: 100%;
}

.business-search-container-search-icon {
    top: 50%!important;
    left: 15px;
    transform: translateY(-50%);
    z-index: 10;
    color: #999;
}

:root {
    --sidebar-width: 240px;
}

.content-wrapper {
    display: flex;
}

.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar-top {
    margin-left: 0;
    width: 100%;
    position: relative;
    left: 0;
}

.business-footer {
    margin-left: 0;
    width: 100%;
    position: relative;
    left: 0;
}

@media (min-width: 768px) {
    .main-content {
        margin-left: var(--sidebar-width);
        width: calc(100% - var(--sidebar-width));
    }

    .navbar-top {
        margin-left: 0;
        width: 100%;
    }

    .business-footer {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
    }

    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .navbar-top {
        width: 100% !important;
        margin-left: 0 !important;
        left: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .business-footer {
        width: 100% !important;
        margin-left: 0 !important;
        left: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .content-body {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
    }
}

/* Business Suppliers */
.supplier-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.supplier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
}

.supplier-image {
    height: 230px;
    object-fit: cover;
}

.supplier-logo-wrapper {
    position: absolute;
    left: 20px;
    bottom: -35px;
    display: flex;
    align-items: center;
}

.supplier-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-right: 10px;
}

.supplier-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.supplier-title {
    margin-left: 5px;
    padding: 5px 10px;
    padding-top: 20px !important;
}

.supplier-card .card-title {
    color: #333;
    font-size: 18px;
}

.location-info,
.phone-info {
    color: #666;
    font-size: 13px;
}

.icon-wrapper {
    color: #777;
    width: 20px;
    margin-right: 8px;
    display: flex;
    justify-content: center;
}

/*Business Suppliers End */

.fixed-height-container {
    min-height: 400px;
    max-height: 600px;
    overflow-y: auto;
}

.table-container {
    position: relative;
}

.no-results-top-container {
    background-color: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.empty-table-placeholder {
    color: #a0a0a0;
    font-style: italic;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.table > :not(caption) > * > * {
    padding: 0.75rem 1rem;
    vertical-align: middle;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

@media (max-width: 767.98px) {
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.border-dashed {
    border-style: dashed !important;
    border-color: var(--primary-60) !important;
    border-width: 2px !important;
}

.subtitle-medium-bold {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-90, #382538);
}

.remove-subcategory {
    width: 35px !important;
    height: 35px !important;
    border-radius: 50% !important;
}

.bg-success {
    background-color: #47d653 !important;
}

.bg-danger {
    background-color: #ff4545 !important;
}

.text-dark {
    color: #000 !important;
}

/* 1. Genel Stil Düzenlemeleri */
.chat-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    max-height: 100vh;
    overflow: hidden;
    background-color: #ffffff; /* White background for chat content */
}

/* 2. Chat Header Bölümü */
/* Header bileşeni artık <x-chat.header /> ile yükleniyor */

/* 4. Mesaj Alanı */
.chat-messages {
    padding: 15px;
    overflow-y: auto;
    flex-grow: 1;
    height: calc(100vh - 220px) !important;
    background-color: #ffffff; /* White background for messages area */
}

.chat-message-wrapper {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
}

.message-incoming {
    align-self: flex-start;
}

.message-outgoing {
    align-self: flex-end;
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.chat-avatar {
    flex-shrink: 0;
}

.chat-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-message-content {
    max-width: 80%;
}

.message-bubble {
    background-color: #f5f5f5;
    padding: 12px 15px;
    border-radius: 18px;
    position: relative;
    max-width: 100%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    word-wrap: break-word;
}

.message-outgoing .message-bubble {
    background-color: var(--primary-50);
    color: white;
}

.message-time {
    font-size: 11px;
    color: #888;
    margin-top: 5px;
    text-align: right;
}

.chat-date {
    text-align: center;
    margin: 20px 0;
    color: #666;
    font-size: 12px;
    position: relative;
}

.chat-date:before,
.chat-date:after {
    content: "";
    height: 1px;
    background-color: #eee;
    flex-grow: 1;
    position: absolute;
    top: 50%;
    width: 30%;
}

.chat-date:before {
    left: 0;
}

.chat-date:after {
    right: 0;
}

/* 5. Chat Input Alanı */
.chat-input-area {
    border-top: 1px solid #eee;
    padding: 15px;
    background-color: #fff;
    position: relative;
}

.chat-input-container {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 24px;
    padding: 8px 15px;
}

.chat-input {
    flex-grow: 1;
    border: none;
    background: transparent;
    outline: none;
    padding: 8px 0;
    font-size: 14px;
}

.chat-action-buttons {
    display: flex;
    align-items: center;
}

.chat-action-buttons button {
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #777;
    transition: all 0.2s;
    border-radius: 50%;
}

.chat-action-buttons button:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-50);
}

.chat-send-btn {
    color: var(--primary-50) !important;
}

/* 6. Chat Tools Container */
.chat-tools-container {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.chat-tool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.tool-close-btn {
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
}

/* 7. Emoji Container */
.emoji-container {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    max-height: 200px;
    overflow-y: auto;
}

.emoji {
    font-size: 24px;
    padding: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}

.emoji:hover {
    transform: scale(1.2);
}

/* 8. File Upload Container */
.file-upload-container {
    padding: 20px;
}

.file-upload-area {
    border: 2px dashed #ddd;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
}

.file-select-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-50);
    color: white;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 10px;
}

/* 9. Responsive Styles */
@media (max-width: 991.98px) {
    .chat-content {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: #fff;
        height: 100vh;
        width: 100vw;
    }

    .chat-messages {
        height: calc(100vh - 170px) !important;
        overflow-y: auto;
        padding-bottom: 70px;
        background-color: #ffffff;
        margin-top: 70px; /* Header'ın yüksekliği için yer aç */
    }

    .chat-message-content {
        max-width: 85%;
    }

    .message-bubble {
        padding: 10px 12px;
    }

    .chat-avatar img {
        width: 35px;
        height: 35px;
    }

    .chat-input-area {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #fff;
        z-index: 95;
    }
}

.business-filter-dropdown-button {
    border: 1px solid var(--color-gray-50, #a48fa5) !important;
    background: #e8e2e8 !important;
    border-radius: 12px !important;
    width: 100% !important;
}
.service-image {
    width: 60px;
    height: 40px;
    object-fit: contain;
}
.table > thead {
    border-bottom: 1px solid var(--color-gray-20, #e8e2e8)!important;
    background-color: #fff!important;
}
.table > thead > tr > th {
    color: var(--white-100, #292929);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}
.table-avatar{
    border-radius: 4px!important;
background: var(--primary-60);
padding: 4px 5px 4px 6px;
}
.table-avatar>span{
    color: var(--white-100, #FFF);
font-family: Jost;
font-size: 12px;
font-style: normal;
font-weight: 600;
}


/* Aksiyon butonları stili */
.action-btn {
    width: 36px;
    height: 36px!important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    transition: all 0.2s ease;
}

.action-edit {
    border: 1px solid #dee2e6;
    background-color: #D748CF!important;
}

.action-delete {
    background: var(--helper-color-red, #FF4545)!important;
}
 /* Action Buttons Styling */
 .action-btn {
    width: 36px!important;
    height: 36px!important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.action-view, .action-detail {
    border: 1px solid #ED3BA9;
    background-color: #ED3BA9 !important;
}

.action-view:hover, .action-detail:hover {
    background-color: #ED3BA9 !important;
    border-color: #ED3BA9;
}

.action-view img, .action-detail img {
    filter: brightness(0) invert(1);
}

.action-edit {
    border: 1px solid #dee2e6;
    background-color: #fff;
}

.action-edit:hover {
    background-color: #f0f6ff;
    border-color: #c6d8ff;
}

.action-delete {
    border: 1px solid #ffe0e3;
    background-color: #fff;
}

.action-delete:hover {
    background-color: #fff5f6;
    border-color: #ffc8cd;
}

/* Media queries for responsive tables */
@media (max-width: 767.98px) {
    .table-scrollable {
        max-height: 500px; /* Smaller height on mobile */
    }
    
    .table-responsive .table th,
    .table-responsive .table td {
        white-space: nowrap;
    }
}

.min-width-140 {
    min-width: 140px;
}
.min-width-200 {
    min-width: 200px;
}


.modal {
    z-index: 999999999!important;
}

@media (max-width: 767.98px) {
    
    .d-flex.flex-column.flex-md-row {
        gap: 10px;
    }
    .w-100 {
        margin-bottom: 8px;
    }
}

.authentication-logo {
    width: 100px;
    height: 100px;
    filter: brightness(0) saturate(100%)
}

.btn-sm {
    height: 34px !important
}
.badge {
    height: 34px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px !important;
}