/* Request Manager Styles */
.rm-container {
    background-color: #1e1e1e;
    color: #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 800px;
    margin: 0 auto;
}

.rm-container h3 {
    color: #ffffff;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.rm-form-section textarea {
    width: 100%;
    height: 100px;
    background-color: #2d2d2d;
    border: 1px solid #444;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.rm-form-section button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.rm-form-section button:hover {
    background-color: #005177;
}

.rm-list-section {
    margin-top: 30px;
}

.rm-request-item {
    background-color: #252525;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rm-status {
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: bold;
}

.rm-status.completed {
    background-color: #2e7d32;
    color: white;
}

.rm-status.searching {
    background-color: #f57f17;
    color: white;
}

.rm-status.not_found {
    background-color: #c62828;
    color: white;
}

.rm-status.pending {
    background-color: #555;
    color: white;
}

/* Modal Styles */
.rm-modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.7); 
}

.rm-modal-content {
    background-color: #2d2d2d;
    margin: 15% auto; 
    padding: 20px;
    border: 1px solid #444;
    width: 80%; 
    max-width: 500px;
    color: #fff;
    border-radius: 8px;
    text-align: center;
}

.rm-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.rm-close:hover,
.rm-close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}
