/* Settings Modal Styles */
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 320px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

/* Modal header styles similar to the sidebar header */
.modal-header h2, .modal-header h3 {
    display: inline;
    margin: 0;
}

.modal-header h2 {
    font-size: 24px;  /* Larger for Propel */
    font-weight: bold;
    color: #000;
}

.modal-header h3 {
    font-size: 24px;  /* Smaller and italic for Mapper */
    font-style: italic;
    font-weight: normal;
    color: #313030;
}

/* Modal buttons styled similar to other project buttons */
.modal-button {
    width: 100%;
    padding: 12px 20px;
    margin-top: 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.modal-button:hover {
    background-color: #0056b3;
}
