/* Ensure the container uses flexbox layout */
.cmn-course-links {
    display: flex;
    align-items: center; /* Center the buttons vertically */
	justify-content: space-between;
}

/* Make the paragraph italic */
.cmn-phone-text {
	font-size: 15px;
    font-style: italic;
}

/* Style the link to be blue and underlined */
.cmn-phone-out-out-link {
    color: blue; /* Change the color of the link to blue */
    text-decoration: underline; /* Underline the link text */
}

/* Optional: Change link color on hover for better user experience */
.cmn-phone-out-out-link:hover {
    color: darkblue; /* Darker blue when the link is hovered */
    text-decoration: none; /* Remove underline on hover */
}


/* Child Enrollment Modal */
/* Modal background (overlay) */
.cmn-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
}

/* Modal content */
.cmn-modal-content {
    background-color: #fff;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 600px; /* Max width */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

/* Close button */
.cmn-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.cmn-modal-close:hover,
.cmn-modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Form controls */
.cmn-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.cmn-btn-primary {
    background-color: #007bff;
    color: #fff;
}

.cmn-btn-primary:hover {
    background-color: #0056b3;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .cmn-modal-content {
        width: 90%;
    }
}
