



/* Temel box model reset */
*,
:after,
:before {
    box-sizing: border-box;
}

/* Media query için scroll davranışı */
@media(prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

/* Text renklerini tanımlayan sınıflar */
.text-primary {
    color: #ff4a29 !important;
 
}

/* Özel elementler için stiller */
.image-main {
    padding: 0;
    padding-left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    position: relative;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}

.image-contain {
    width: 100%;
    height: 100%;
    text-align: right;
}

.auth-container {
    min-height: 100vh;
}

.freelence-profile {
    position: absolute;
    top: calc(50% + 18px);
    transform: translateY(-50%);
    margin: 0;
    right: calc(135px + (205 - 135) * ((100vw - 1440px) / (1920 - 1440)));
    height: 51.75vh;
}

.image-title {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    color: $primary-color-1;
    position: absolute;
    top: 94px;
    left: 55px;
    width: calc(100% - calc(227px + (448 - 227) * ((100vw - 1440px) / (1920 - 1440))));
    text-align: left;
}

.btn-secondary {
    background-color: #ff4a29 !important;
    color: #fff !important;
}

.page-link.active {
    background-color: #ff4a29 !important;
    color: #fff !important;
    border: #ff4a29 !important;
}

/* Mobil görünüm için medya sorgusu */
@media (max-width: 767.98px) {
    .table-responsive {
        border: none;
    }

    .table> :not(caption)>*>* {
        padding: 0.5rem 0;
        background-color: transparent;
        border-bottom-width: 0;
    }

    tr.d-block {
        padding: 1rem;
        background-color: #fff;
        border: 1px solid rgba(0, 0, 0, .125);
        border-radius: 0.5rem;
    }
}

/* Dropdown menü için özel stil */
.dropdown-menu {
    z-index: 1021;
    /* Bootstrap navbar z-index'inden yüksek */
    position: absolute;
    transform: none !important;
    right: 0;
    left: auto !important;
}

/* Table-responsive içindeki dropdown'lar için */
.table-responsive .dropdown {
    position: static;
}

/* Dropdown toggle butonu için */
.table-responsive .dropdown-toggle {
    position: relative;
    z-index: 1020;
}

/* Table cell positioning */
.table td {
    position: relative;
}

