.modal-overlay {
    position: fixed; 
    inset: 0; display: none; 
    align-items: center; 
    justify-content: center;
    background: rgba(0,0,0,0.6); z-index: 9999; padding: 1rem;
    z-index: 10000;
}
.modal-overlay.active { 
    display: flex;
}

.modal-content {
    width: 100%; 
    max-width: 520px; 
    background: #111; 
    color: #fff; 
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,.5); 
    padding: 16px; 
    display: grid; 
    gap: 12px;
}

#contactMessage {
    min-height: 160px; 
    width: 100%; 
    resize: vertical; 
    background: #1a1a1a; 
    color: #fff;
    border: 1px solid #333; 
    border-radius: 2px; 
    padding: 10px;
}

.modal-buttons { 
    display: flex; 
    gap: 10px; 
    justify-content: space-between; 
    width: 100%;
}
.modal-buttons button {
    flex: 1;
    border: none; 
    padding: 10px 14px; 
    border-radius: 2px; 
    cursor: pointer;
    text-align: left;
    text-decoration: none;
    font-family: 'DM Mono';
    font-size: 14px;
}
.modal-buttons button:first-child { 
    background: #00A2FF;
    color: white;
}
.modal-buttons button:last-child  { 
    background: #333; 
    color: white; 
}
  