/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
}

.navbar-nav .nav-link {
    font-size: 1rem;
    padding: 10px 15px;
}

.navbar-nav .nav-link:hover {
    background-color: #e9ecef;
    border-radius: 5px;
}

.dropdown-menu {
    max-height: 400px;
    overflow-y: auto;
    border-radius: 0.25rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Icon Size */
.icon-size {
    width: 24px;
    height: 24px;
}

/* Header */
header {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

/* Main Content */
main .container {
    padding: 20px;
}

main h2 {
    margin-bottom: 20px;
}

/* Category Section */
.category {
    margin-bottom: 40px;
}

.category h3 {
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.card-text {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Buttons */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Alerts */
.alert {
    border-radius: 0.25rem;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    z-index: 1050;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.alert .close {
    outline: none;
    padding: 0.75rem 1.25rem;
    background-color: transparent;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
}

.alert .close:hover {
    color: #000;
    text-decoration: none;
    opacity: 0.75;
}

/* Footer */
footer {
    background-color: #343a40;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    text-align: center;
    color: #fff;
}

footer p {
    margin: 0;
    color: #ccc;
}


.equal-button {
    width: 150px; /* Adjust the width as needed */
    padding: 10px; /* Adjust padding to control the height */
    font-size: 16px; /* Ensure consistent font size */
}

