@import url('https://fonts.googleapis.com/css2?family=Sarabun:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sarabun' !important;
}

/* 👇 จำกัดชื่ออัลบั้มไม่เกิน 2 บรรทัด */
.album-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-title {
    min-height: 48px;
}

.AddAlbum {
    min-height: 333px;
}

.div_btn {
    position: absolute;
    right: 10px;
    z-index: 2;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.25s ease-out;
}

#loginModal, #addAlbumModal{
    z-index: 9999;
}