.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    text-align: center;
}

.close-button {
    float: right;
    font-size: 20px;
    cursor: pointer;
}

.card-title {
    font-weight: bold;
}

.btn-danger, .btn-outline-danger {
    border-radius: 20px;
}

.search-wrapper {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 8px 16px;
    width: 100%;
}

.search-input {
    outline: none;
    flex-grow: 1;
    font-size: 16px;
}

#searchSuggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1050; /* higher than cards/modal */
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0 0 8px 8px;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#searchSuggestions li {
  padding: 10px 15px;
  cursor: pointer;
}

#searchSuggestions li:hover {
  background-color: #f8f9fa;
}
