.settings-container {
    display: flex;
    gap: 20px;

    @media (max-width: 768px) {
        flex-direction: column;
    }
}

.settings-content {
    flex: 1;
}

.clear-setting {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;

    &:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .clear-title {
        font-weight: bold;
        margin-bottom: 5px;
    }

    .clear-controls {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 5px;

        .price-input {
            display: flex;
            align-items: center;

            input {
                width: 500px;
            }

            .currency {
                margin-left: 5px;
            }
        }
    }

    .total-count {
        font-size: 12px;
        color: #777;
    }
}

.update-soon {
    background: rgba(100, 149, 237, 0.1);
    background-color: #f8f9fa;
    backdrop-filter: blur(5px);
    border-radius: 8px;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px dashed #6495ed;
    border: 1px dashed #dee2e6;
    color: #4169e1;
    margin-bottom: 20px;

    h4 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    p {
        font-size: 0.9rem;
        opacity: 0.8;
    }

    i {
        color: #4169e1;
    }

    @media (max-width: 768px) {
        width: 100%;
        margin-top: 20px;
    }
}

.setting-item:hover {
    background-color: #f8f9fa;
    transition: background-color 0.2s ease;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
}

.card-header {
    border-radius: 0.35rem 0.35rem 0 0 !important;
}

.input-group-sm .form-control {
    height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
}

.btn-group-toggle label {
    margin-bottom: 0;
}