
.logo {
    width: 89px;
    height: auto;
    text-align: left;
}
.nav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
}
.navbar a {
    color: #000000;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 2.5rem;
    font-family: 'Mitr', sans-serif
}
.navbar a:hover {
    color: #00b894;
    text-decoration: none;
}
.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: white;
}
.container {
    max-width: 1500px;
    height: 100%;
    margin: 30px auto;
    justify-content: start;
    background-color: #ffffff;
    border: #000000 solid 1px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding-top: 20px;

}

.box-money1 {
    width: 100px;
    height: 50px;
    background-color: #ff0000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    margin: 10px;
}
.box-money2 {
    width: 100px;
    height: 50px;
    background-color: #00ff00;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    margin: 10px;
}
footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
#text-top {
    font-size: 2rem;
    color: #000000;
    margin: 0;
    font-family: Georgia, serif;
}
.dropdownbt {
    justify-self: center;
}
.form-select {
    width: 200px;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Mitr', sans-serif;
    background-color: #f8f9fa;
    color: #495057;
    transition: border-color 0.2s ease-in-out;
}

.h1px {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 20px;
    font-family: 'Mitr', sans-serif;
    text-align: center;
}

.card-content {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    padding: 10px;
    scroll-behavior: smooth;
    cursor: grab;
    user-select: none;
}

.card-content::-webkit-scrollbar {
    display: none; /* Hide scrollbar for WebKit browsers */
}

.card {
    min-width: 200px;
    flex-shrink: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.card h2 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-family: 'Mitr', sans-serif;
}
.card:hover {
    transform: scale(1.03);
}
button{
    background-color: #00b894;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button:hover {
    background-color: #00a884;
}
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: center;
    }
    .navbar a {
        font-size: 1.5rem;
    }
    .container {
        padding: 10px;
    }
    .card-content {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 100%;
        max-width: 300px;
    }
}
@media (max-width: 480px) {
    .navbar a {
        font-size: 1.2rem;
    }
    .container {
        padding: 5px;
    }
    .card {
        width: 100%;
        max-width: 250px;
    }
}
@font-face {
    font-family: 'Mitr';
    src: url('https://fonts.googleapis.com/css2?family=Mitr:wght@300;400;500;600;700&display=swap') format('woff2');
}

button a {
    color: white;
    text-decoration: none;
}

button a:hover {
    color: white;
    text-decoration: underline;
}
iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}