@import 'Utils/normalize.css';
@import '../lib/bootstrap-4/bootstrap-grid.min.css';
@import '../lib/flaticon/flaticon.css';
@import '../lib/animation/animate.min.css';
/* Custom Font */
@import '../fonts/iransans.css';
/* core css */
@import 'Utils/core.css';
@import 'Utils/color.css';
@import 'Utils/spacers.css';
@import 'Utils/transition.css';

body {
    background: #191c2e;
    font-size: 13px;
    overflow-x: hidden;
    direction: ltr;
    text-align: left;
}

* {
    font-family: 'opensans', sans-serif;
    font-weight: 300;
}

.effect {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(75, 8, 60, 0.281);
}

#main-header {
    background: #2b2e43;
    height: auto;
    max-height: 60px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

#main-header .search {
    height: 60px;
    background: #3b3f53;
    text-align: center;
    width: 400px;
    display: flex
}

#main-header .search input#search {
    background: #3b3e52;
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    height: 100%;
    width: 100%;
}

#main-header .icon:before {
    line-height: 50px;
    margin: 0 10px 0 30px;
    font-size: 23px;
}

#main-header .account figure {
    display: flex;
    flex-direction: row-reverse;
}

#main-header .account figcaption {
    color: #fff;
    margin: auto 10px;

}

#main-header .account .avatar {
    position: relative;
    width: 50px;
    height: 50px;
    overflow: hidden;
    box-shadow: 0 0 10px #222;
}

.wrapper .menu-left {
    padding: 80px 20px;

}

.wrapper .menu-left .list li {
    text-align: center;
    width: 100%;
    margin: 20px 10px;
}

.wrapper .menu-left .list li a {
    display: flex;
    flex-direction: column;
    color: #ccc;
    font-size: 13px;
}

.wrapper .menu-left .list li a.active .icon:before {
    color: #38c3d5;
}

.wrapper .menu-left .list li a.active .text {
    color: #fff;
}

.wrapper .menu-left .list li a .icon:before {
    margin: 0;
    color: #777;
    font-size: 28px;
}

.wrapper .menu-left .list li a .text {
    margin: 10px 0;
}

.wrapper .main-content {
    right: -20px;
    position: relative;
    height: 100%;
    background-color: #2b2e43;
    /* örnek renk */
    padding-bottom: 60px;
    /* yazının sığması için boşluk bırak */
}

.wrapper .main-content .header-content {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    background: #191c2e;
}

.wrapper .main-content .header-content .action .btn {
    line-height: 20px;
    border-radius: 7px;
    width: 180px;
    font-weight: 700;
    background: #4378eb;
    color: white;

}

.wrapper .main-content .header-content .action a {
    margin: 0 20px;
}

.wrapper .main-content .header-content .list li a {
    color: #ccc;
    margin: 25px 10px 0 10px;
    display: flex;
}

.wrapper .main-content .header-content .list li a .state {
    border: 3px solid #eee;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin: 0 10px;
}

.board span.icon {
    cursor: pointer;
}

.main-content .header-content .list li a .state.red,
.main-content .dashboard .board.red,
.board .board-content .task.red {
    border-color: #f95a6c;
}

.main-content .header-content .list li a .state.yellow,
.main-content .dashboard .board.yellow,
.board .board-content .task.yellow {
    border-color: #f5a623;
}

.main-content .header-content .list li a .state.green,
.main-content .dashboard .board.green,
.board .board-content .task.green {
    border-color: #3fe671;
}

.main-content .header-content .list li a .state.blue,
.main-content .dashboard .board.blue,
.board .board-content .task.blue {
    border-color: #4378eb;
}
.main-content .header-content .list li a .state.cyan,
.main-content .dashboard .board.cyan,
.board .board-content .task.cyan{
    border-color: #00FFFF;
}

.main-content .header-content .list li a .state.mor,
.main-content .dashboard .board.mor,
.board .board-content .task.mor{
    border-color: #e0b0ff;
}
.main-content .dashboard {
    padding: 30px;
    overflow-y: scroll;
    height: 80vh;
}

.main-content .dashboard .board {
    background: #303446;
    border-top: 2px solid #ddd;
    margin-bottom: 30px;
    overflow: hidden;
    transform: translateZ(0);
    /* <-- ekle */
}

.main-content .dashboard .board>header {
    padding: 20px;
    background: #36394a;
    color: #bbb;
    position: relative;
    border-bottom: 1px solid rgba(109, 106, 106, 0.452);
}

.main-content .dashboard .board h4 {
    margin: 0;
    font-weight: 500;
}

.main-content .dashboard .board span.icon:before {
    position: absolute;
    top: 15px;
    right: 10px;
    font-size: 21px;
}

.main-content .dashboard .board .board-content {
    padding: 20px 30px 20px 5px;
    overflow-y: scroll;
    max-height: 600px;
    position: relative;
    right: -20px;
    transform: translate3d(0, 0, 0);
    /* ekle */
}

.board .board-content li {
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
    background: #fff;
}

.board .board-content .task {
    border-left: 3px solid #38c3d5;
    padding: 10px;
    cursor: pointer;
    transform-style: preserve-3d;
}

.board .board-content .task header {
    position: relative;
}

.board .board-content .task header h3 {
    margin: 0;
    padding: 10px;
    font-weight: 500;
    color: #444;
}

.board .board-content .task header span.icon:before {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 15px;
    color: #777;
}

.board .board-content .task header span.icon:hover:before {
    color: #4378eb;
}

.board .board-content .task .task-content {
    padding: 0 10px 10px 10px;
    line-height: 18px;
    font-size: 11px;
    color: #848691;
    white-space: normal;
    /* satır kaydırma için */
    word-wrap: break-word;
    /* kelimeyi bölerek sığdırma */
    overflow: visible;
    max-height: none;

}


@media screen and (max-width: 1024px) {
    .wrapper .menu-left {
        padding: 20px;
    }

    .wrapper .menu-left .list {
        display: flex;
    }

    #main-header .search {
        display: none;
    }
}

.kart-sahibi.red {
    color: #f95a6c;
}

.kart-sahibi.yellow {
    color: #f5a623;
}

.kart-sahibi.green {
    color: #3fe671;
}
.kart-sahibi.blue {
    color: #4378eb;
}
.kart-sahibi.cyan {
    color: #00FFFF;
}

.kart-sahibi.mor {
    color: #e0b0ff;
}

.btn-custom {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-blue {
    background-color: #007bff;
}

.btn-red {
    background-color: #dc3545;
}

.btn-green {
    background-color: #28a745;
}

.btn-custom:hover {
    opacity: 0.9;
}

.btn-custom.btn-gorev {
    background-color: #007bff;
    color: #fff;
    padding: 8px 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 6px;
    text-decoration: none;
    line-height: 1.4;
    font-size: 14px;
}

.btn-custom.btn-gorev .flaticon-add {
    font-size: 16px;
    line-height: 1;
    margin-left: 4px;
    position: relative;
    top: 1px;
}

@media (max-width: 768px) {

    body,
    html {
        overflow-x: hidden;
    }

    .row.wrapper.no-padding {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .col-xl-1,
    .col-sm-2,
    .col-xl-11,
    .col-sm-10,
    .col-xl-4,
    .col-sm-6 {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .menu-left {
        flex-direction: row;
        justify-content: space-around;
        background-color: #333;
        padding: 10px 0;
        max-height: 100px;
    }

    .menu-left ul.list {
        display: flex;

        flex-direction: row;
        justify-content: space-evenly;
        width: 100%;
        padding: 0;
        margin: 0;

    }

    .menu-left ul.list li {
        flex: 1;
        text-align: center;
    }

    .main-content {
        padding: 10px;
    }

    /* Kullanıcı bilgisi bölümü */
    .user-info {
        font-size: 10px;
        /* daha küçük başlık */
        margin: 0;
        color: white;
        font-weight: bold;
    }

    .user-info p {
        font-size: 8px;
        /* alt görev yazısı daha küçük */
        margin: 0;
        color: white;
    }

    /* Avatar küçültme */
    .avatar-wrapper img {
        width: 50px;
        height: 20px;


    }

    /* Header içi hizalama */
    #main-header .account {
        width: 200px;
        padding: 0 10px;
        gap: 10px;
    }

    .sidebar-footer {
        display: none;
    }

    #main-header .search {
        height: 80px;
        background: #3b3f53;
        text-align: center;
        width: 200px;
        display: flex;
    }

    #search::placeholder {
        color: transparent;
    }

    .search .icon {
        font-size: 6px;

    }
}



.logo-platform {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    /* Yazının satır atlamasını engelle */
    margin-top: 10px;
    overflow: hidden;
    /* Taşmaları gizle */
    max-width: 100%;
}

.logo-platform img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-platform span {
    font-size: 18px;
    font-weight: bold;
    color: white;
    display: inline-block;
}