.empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.empty-icon-circle {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 136, 0, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 20px;
}

.svg {
    display: block;
    max-width: 100%;
    height: auto;
}

.empty-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 10px 0;
}

.empty-text {
    font-size: 15px;
    color: #828282;
    max-width: 250px;
    line-height: 1.4;
    margin: 0;
}

.empty-action-btn {
    margin-top: 25px;
    padding: 10px 24px;
    background-color: #2688eb;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.empty-action-btn:active {
    background-color: #2178d1;
    transform: scale(0.98);
}

.coming-soon-badge {
    background-color: rgba(255, 136, 0, 1);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}