* {
    /*font-family: 'Phetsarath OT';*/
    /*src: url('fonts/PhetsarathOT.ttf')  format('truetype'),*/
}

.phetsarath-font {
    /*font-family: 'Phetsarath OT';*/
    /*src: url('fonts/PhetsarathOT.ttf')  format('truetype'),*/
    font-family: "Noto Sans Lao Looped", sans-serif;
}

.timenewroman-font {
    /*font-family: 'Times New Roman';*/
    font-family: "Noto Sans Lao Looped", sans-serif;
}

.color-concept {
    color: #fff;
    background-color: #00AAAC;
}

.centent-center {

    display: flex;
    justify-content: center;
    align-items: center;

}


#table-style1 {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

#table-style1 td, #customers th {
    border: 1px solid #ddd;
    padding: 8px;
    color: black
}

#table-style1 tr:nth-child(even) {
    background-color: #f2f2f2;
}

#table-style1 tr:hover {
    background-color: #ddd;
}

#table-style1 th {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: #00AAAC;
    color: white;
}

input[type="file"]::file-selector-button {
    border-radius: 4px;
    padding: 0 16px;
    height: 40px;
    cursor: pointer;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.16);
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
    margin-right: 16px;
    transition: background-color 200ms;

}

/* file upload button hover state */
input[type="file"]::file-selector-button:hover {
    background-color: #f3f4f6;
}

/* file upload button active state */
input[type="file"]::file-selector-button:active {
    background-color: #e5e7eb;
}

#table-style2 tr:hover {
    background-color: #ddd;
}

#table-style2 {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

#table-style2 td, #customers th {
    border: 1px solid #ddd;
    padding: 8px;
    color: black
}

.button-outline {
    width: 12rem;
    background-color: white;
    color: #00AAAC;
    padding: 0.5rem 1.5rem;
    border: 2px solid #00AAAC;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button-outline:hover {
    background-color: #00AAAC;
    color: white;
}

.slide img {
    width: 100% !important; /* Image fills the container's width */
    height: 60vh !important; /* 60% of the viewport height */
    max-height: 500px !important; /* Prevents it from getting too tall */
    object-fit: cover !important; /* Keeps it nicely cropped and filled */
    display: block !important;
    margin: 0 auto !important; /* Center the image horizontally */
}

/* Responsive tweak for tablets */
@media (max-width: 768px) {
    .slide img {
        height: 40vh !important;
        max-height: 400px !important;
    }
}

/* Responsive tweak for phones */
@media (max-width: 480px) {
    .slide img {
        height: 30vh !important;
        max-height: 300px !important;
    }
}