/* style-mobile.css */

/* General styles for mobile */
body {
    font-size: 14px; /* Smaller font size for mobile */
    margin: 0;
    padding: 0;
}

/* Adjust form container width and margin for mobile */
.form-container {
    width: 95%; /* Increase width to utilize more space on mobile */
    margin: 20px auto; /* Less margin on mobile */
    padding: 15px; /* Reduce padding for smaller screens */
}

/* Header button container styles */
.header-button-container {
    display: flex; /* Use flexbox to arrange buttons */
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 10px;
}

/* General button styles */
.header-button {
    margin-right: 5px; /* Reduce space between buttons */
    padding: 8px 12px; /* Adjust padding for mobile */
    background-color: #0073bb;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

/* Adjust table layout for mobile */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px; /* Smaller font size for table */
}

th, td {
    border: 1px solid #cccccc;
    padding: 8px;
    text-align: left;
    display: block; /* Display block on mobile */
    width: 100%; /* Full width on mobile */
}

th {
    background-color: #f2f2f2;
}

/* Stack table rows for better mobile layout */
tr {
    margin-bottom: 10px;
    display: block;
    border-bottom: 1px solid #cccccc;
}

td {
    padding: 10px;
}

a {
    color: #0073bb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive image styling */
img {
    width: 100%; /* Full width image */
    height: auto;
    max-width: 100px; /* Keep image size under control */
}

/* Filter menu styles */
.hamburger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #00ff0f;
    cursor: pointer;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
}

.hamburger-icon .line {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 2px 0;
}

.filter-menu {
    display: none;
    background-color: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    z-index: 100;
}

.filter-menu.active {
    display: block;
}

.filter-container {
    padding: 15px;
}

select {
    width: 100%;
    padding: 5px;
    margin: 10px 0;
}

