.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}
.modal-content {
    background-color: #252536;
    margin: 5% auto;
    padding: 0;
    border-radius: 8px;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    overflow: hidden;
    border: 1px solid #3a3a4a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.modal-header {
    padding: 20px;
    background-color: #2d2d3f;
    border-bottom: 1px solid #3a3a4a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h2 {
    color: #646cff;
    font-size: 1.5rem;
}
.close-modal {
    background: none;
    border: none;
    color: #ff6464;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-body {
    padding: 20px;
    max-height: calc(80vh - 80px);
    overflow-y: auto;
}
.search-bar {
    position: relative;
    margin-bottom: 20px;
}
.search-bar i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0a0b0;
}
.search-bar input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    background-color: #2d2d3f;
    border: 1px solid #3a3a4a;
    border-radius: 6px;
    color: #e2e2e2;
    font-size: 14px;
}