/* Plus Modal CSS - теперь используется React компонент с shadcn Dialog */
/* Стили ниже используются только для Plus button */

/* ============================================
   PLUS BUTTON (на профиле)
   ============================================ */

.plus-button {
    background: var(--block-color) !important;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.7rem 1.2rem;
    border-radius: 0.9rem;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.plus-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.plus-button:hover {
    background: var(--border-color) !important; 
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}


.plus-button:active {
    transform: translateY(0);
}

.plus-button img {
    width: auto;
    height: 1rem;
    filter: brightness(1.1);
    position: relative;
    z-index: 1;
}
