body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4ecd8; /* Light desert color */
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    height: 100vh;
    direction: rtl; /* Right-to-left text direction */
    text-align: right; /* Right-align text */
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    background-color: #d8d1bb; /* Light beige background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
}

.card {
    background-color: #d8d1bb; /* Light beige */
    padding: 30px;
    margin: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add light shadow effect */
    width: 250px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease-in-out; /* Add smooth transition */
}

.card:hover {
    transform: scale(1.05); /* Add scaling effect on hover */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); /* Change shadow on hover */
}

.card a {
    text-decoration: none;
    color: #206a5d; /* Dark green */
    font-size: 18px; /* Increase font size for better readability */
}

.symbol {
    font-size: 64px;
    margin-bottom: 10px;
    color: #206a5d; /* Dark green */
}

.small {
    width: 180px;
}


.symbol {
    font-size: 64px;
    margin-bottom: 10px;
    color: #f2c36b; /* Desert yellow */
}

.small {
    width: 180px;
}

.btn-primary {
    background-color: #206a5d; /* Dark green button background */
    border-color: #206a5d; /* Dark green button border */
    color: #fff; /* White text */
    width: 100%;
    margin-top: 20px;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #184c43; /* Darker green on hover */
    border-color: #184c43; /* Darker green on hover */
}

.table {
    background-color: #fff; /* White background for the table */
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    border-radius: 10px; /* Rounded corners */
    overflow: hidden; /* Prevent overflow on rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
}

.table th, .table td {
    padding: 12px;
    text-align: right; /* Align text to the right */
    border-bottom: 1px solid #ddd; /* Light gray border */
}

.table th {
    background-color: #206a5d; /* Dark green for table header */
    color: #f4ecd8; /* Light desert color for text */
    cursor: pointer;
}

.table tr:hover {
    background-color: #f2c36b; /* Light yellow on hover */
}

.table td {
    color: #206a5d; /* Dark green for table data */
}

.modal-content {
    border-radius: 10px;
    background-color: #f4ecd8; /* Light desert color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
    direction: rtl; /* Right-to-left text direction */
    text-align: right; /* Align text to the right */
}
 .float-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #1f6b5e; /* Bottle green */
            color: white;
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            font-size: 24px;
            text-align: center;
            line-height: 60px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s;
        }

        .float-button:hover {
            background-color: #556b2f; /* Darker bottle green */
        }
.modal-header, .modal-footer {
    border: none;
    direction: rtl; /* Right-to-left text direction */
    text-align: right; /* Align text to the right */
}

.modal-title {
    color: #206a5d; /* Dark green title text */
}

.autocomplete-suggestions {
    border: 1px solid #206a5d; /* Dark green border */
    max-height: 150px;
    overflow-y: auto;
    background-color: #fff; /* White background */
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
    direction: rtl; /* Right-to-left text direction */
    text-align: right; /* Align text to the right */
}

.autocomplete-suggestion {
    padding: 8px;
    cursor: pointer;
    color: #206a5d; /* Dark green suggestion text */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.autocomplete-suggestion:hover {
    background-color: #f2c36b; /* Light yellow on hover */
    color: #184c43; /* Darker green on hover */
}
