@import url("base/reset.css");
@import url("components/orbs.css");
@import url("layout/layout.css");
@import url("components/player.css");
@import url("components/albums.css");
@import url("components/modal.css");

/* Крестик закрытия */
.modal-close {
    transition: transform 0.2s, color 0.2s;
}

.modal-close:active {
    transform: scale(0.8);
    color: #ff6b6b;
}
/* Крестик закрытия — реакция на нажатие */
#closeAlbumModalBtnCustom {
    transition: all 0.15s ease;
}

#closeAlbumModalBtnCustom:active {
    transform: scale(0.85);
    color: #ff6b6b;
    background: rgba(255,107,107,0.15);
    border-color: rgba(255,107,107,0.3);
}

/* И для стандартного тоже */
.modal-close {
    transition: all 0.15s ease;
}

.modal-close:active {
    transform: scale(0.85);
    color: #ff6b6b;
}