#search-container {
    background: #fff7cc; /* light yellow */
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
}

#search-box {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    text-align: right; /* Arabic style */
    direction: rtl;
    border: 1px solid #ccc;
    border-radius: 6px;
}

#search-results {
	border: 1px solid #ccc;
    margin-top: 15px;
}

.search-table {
    width: 100%;
    border-collapse: collapse;
    direction: rtl;
}

.search-table th {
    background: #3a8bcd;
    color: white;
    padding: 8px;
    text-align: center;
}

.search-table td {
    border: 1px solid #ddd;
    padding: 8px;
    font-size: 16px;
}

.search-table tr:hover {
    background-color: #f0f8ff; /* Light blue on hover */
    cursor: pointer;
}

.search-table tr.selected {
    background-color: #d0e7ff !important; /* Slightly darker blue when clicked */
}
#search-results-header {
    display: flex;
    justify-content: space-between;
    background: #fdf2a1; /* light yellow */
    padding: 8px 12px;
    font-weight: bold;
    cursor: pointer;
}	

#collapse-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#search-results-body {
    overflow-y: auto;        /* enable vertical scroll */
    overflow-x: hidden;      /* optional: hide horizontal scroll */
    padding: 10px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

#search-results.collapsed #collapse-btn {
    transform: rotate(180deg);
}

#search-results.collapsed #search-results-body {
    max-height: 0;
    padding: 0;
}