@charset "utf-8";
body {
    font-family: 'Kanit', sans-serif !important;
    font-size: 16px;
    color: #000000;
    margin: 0px;
    padding: 0px;
    text-decoration: none;
    overflow-x: hidden;
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

a {
    text-decoration: none;
}

.custom-rounded {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}