/* Modal overlay styling */
/* Dark backdrop styling */
.modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Custom modal dialog to adjust size */
.custom-modal-dialog {
    max-width: 80%; /* Make the modal wider */
}

/* Modal content styling */
.custom-modal-content {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Modal title styling */
.modal-title {
    font-size: 1.75rem;
    font-weight: 600;
}

/* Message styling */
.modal-message {
    color: #555;
    font-size: 1rem;
    margin-bottom: 20px;
}
/* Button Row Layout */
.button-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Custom Button Colors */
.download-cv {
    background-color: #28a745; /* Green */
    color: white;
}

.short-resume {
    background-color: #ffc107; /* Yellow */
    color: black;
}

.detailed-resume {
    background-color: #17a2b8; /* Blue */
    color: white;
}

/* Button Hover Effects */
.download-cv:hover {
    background-color: #218838; /* Darker Green */
}

.short-resume:hover {
    background-color: #e0a800; /* Darker Yellow */
}

.detailed-resume:hover {
    background-color: #117a8b; /* Darker Blue */
}

/* Button Styling */
.btn {
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

