.information-message-test {
color: var(--strong-blue); 
font-size: var(--font-size-h4); 
font-weight:var(--font-weight-semibold); 
font-family: var(--font-family-montserrat);
margin-top:var(--margin-xs);
margin-left:var(--margin-xs);
}

/* Info message container */
.info-message {
	display: block; /* Ensure it takes up full width */
	width: calc(100% - 25px); 
    box-sizing: border-box;
    padding: 15px;
    margin: 20px auto; 
    background-color: #eaf4fe; /* Light blue background */
    border-left: 5px solid #0078d4; /* Blue accent border */
    color: #333; /* Darker text color for readability */
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
	box-shadow: 0 0 0 10px #f0f0f0;
}

.information-message {
background-color: #1E6CAE; /* Strong blue background */
color: white; /* White text */
padding: 5px;
font-size: 16px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
justify-content: center;
margin: auto;
width: 85%; /* Set width */
height: 60px; /* Set height */
}

.information-message img {
filter: invert(1) brightness(400%);  /* Invert color to change black to white */
margin-right: 10px; /* Add some space between the icon and the text */
}

/* Card container styling */
.view-details-card {
    background-color: #f9f9f9; /* Light background */
    border: 1px solid #ddd; /* Subtle border */
    border-radius: 8px; /* Rounded corners */
    padding: 20px; /* Inner padding */
    max-width: 600px; /* Width restriction */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
    margin: 20px auto; /* Center alignment */
}

/* Title styling */
.view-details-card h3 {
    font-size: 1.5em; /* Larger title */
    color: #333; /* Darker title color */
    margin-bottom: 15px; /* Spacing below title */
    text-align: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

/* List styling */
.small-bullets {
    list-style-type: disc;
    padding-left: 20px;
    color: #555; /* Softer text color */
}

/* List item styling */
.small-bullets li {
    font-size: 16px;
    line-height: 1.6;
    margin: 8px 0; /* Spacing between items */
}

/* Label styling for strong emphasis */
.small-bullets li strong {
    color: #333; /* Darker color for label */
    font-weight: bold;
}

/* Video container styling */
.video-container {
    margin-top: 20px; /* Space above the video */
    max-width: 100%; /* Full width of the card */
    overflow: hidden;
    border-radius: 8px; /* Match card corner radius */
}

.view-details-card video {
    width: 100%; /* Responsive video width */
    height:400px;
    border-radius: 8px; /* Optional: match card corner radius */
}

/* Biography container styles */
.bio-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Photo section */
.bio-photo {
    flex-shrink: 0;
}

.instructor-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Biography details */
.bio-details {
    flex-grow: 1;
}

/* Paragraph styling in biography */
.bio-paragraph {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #555;
}

.bio-details p {
    margin: 8px 0;
}

.extra-options {
    margin-top: 8px;
    text-align: left;
    font-size: 14px;
    color: #555;
}

.check-error-message {
    font-size: 1rem;
}

.policy-message {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

.policy-underline {
	text-decoration: none;
    color: #007bff;
}

.policy-underline:hover {
    text-decoration: underline;
    color: #0056b3;
}

.terms-privacy input[type="checkbox"] {
    margin-right: 5px;
	margin-top: 5px; /* Pushes the checkbox down slightly */
    transform: scale(1.2); /* Increases the size of the checkbox */
    cursor: pointer; /* Adds a pointer cursor for better user feedback */
}

/* ✅ Large Desktops (min-width: 1920px) */
@media (min-width: 1920px) {
    .info-message {
        font-size: 20px;
    }

    .view-details-card {
        max-width: 800px; /* Width restriction */
    }

    .small-bullets li {
        font-size: 20px;
    }

    .view-details-card h3 {
        font-size: 24px; /* Larger title */
    }

    .info-message {
        font-size: 20px;
    }

    .information-message {
        font-size: 20px;
    }

    .instructor-photo {
        width: 160px;
        height: 160px;
    }

}

/* ✅ Standard Laptops (max-width: 1280px) */
@media (max-width: 1280px) {
    .info-message {
        font-size: 16px;
    }

    .small-bullets li {
        font-size: 16px;
    }

    .view-details-card h3 {
        font-size: 18px; /* Larger title */
    }

    .info-message {
        font-size: 16px;
    }

    .information-message {
        font-size: 16px;
    }

    .instructor-photo {
        width: 135px;
        height: 135px;
    }
}

/* ✅ Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
    .info-message {
        font-size: 15px;
    }

    .info-message {
        font-size: 15px;
    }

    .information-message {
        font-size: 15px;
        height: 65px; 
    }

    .view-details-card h3 {
        font-size: 16px; /* Larger title */
    }

    .small-bullets li {
        font-size: 15px;
    }

    .instructor-photo {
        width: 125px;
        height: 125px;
    }
}