﻿.topbar {
    height: 108px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 28px;
    background: #0F1628;
}



.search-box {
    width: 370px;
    height: 52px;
    border: 1px solid #293447;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    background: #111A2B;
}



    .search-box i {
        color: #8893A8;
        font-size: 20px;
    }



    .search-box input {
        flex: 1;
        margin-left: 14px;
        border: none;
        outline: none;
        background: transparent;
        color: white;
        font-size: 16px;
    }



        .search-box input::placeholder {
            color: #8893A8;
        }



.filter-button {
    width: 150px;
    height: 52px;
    border: 1px solid #293447;
    border-radius: 12px;
    background: #111A2B;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
}



    .filter-button:hover {
        background: #162133;
    }



.topbar-spacer {
    flex: 1;
}



.stat-card {
    width: 178px;
    height: 70px;
    border: 1px solid #293447;
    border-radius: 12px;
    background: #111A2B;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 18px;
}



.stat-number {
    color: white;
    font-size: 20px;
    font-weight: 700;
}



.stat-title {
    margin-top: 2px;
    color: #9CA7B9;
    font-size: 13px;
}



.green {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #18D96B;
}



.stat-red {
    color: #FF4444;
    font-size: 22px;
}



.stat-green {
    color: #19D96B;
    font-size: 22px;
}


