/* Global Styling for Save Search Plugin */
.open-popup-btn {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    /* background-color: #0073aa; */
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease-in-out;
}
.open-popup-btn:hover {
    background-color: #005177;
}

/* Saved Searches List */
.saved-searches-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    /* max-width: 400px; */
}

.saved-search-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    width: 100%;
}

/* Search Serial Number */
.saved-search-item .search-srno {
    font-weight: bold;
    width: 5%;
    margin-right: 10px;
}

/* Actions Buttons (Delete & Update) */
.saved-search-actions {
    display: flex;
    gap: 10px;
}

.saved-search-actions button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    font-size: 16px;
    opacity: 0.7;
}

.saved-search-actions button:hover {
    opacity: 1;
}

.saved-search-actions .update-search-btn {
    color: #4CAF50; /* Green for update */
}

.saved-search-actions .delete-search-btn {
    color: #f44336; /* Red for delete */
}

/* SweetAlert2 Button Styling */
.swal2-button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.small-btn {
    flex: 1;
    font-size: 14px;
    padding: 6px 10px;
    text-align: center;
}
#cancel-search, #submit-search {
    display: flex;
    justify-content: center;
}
