.vcet-submit-btn {
padding: 1rem 3rem;
background: var(--vcet-primary-color);
color: white;
border: none;
font-size: 1.125rem;
font-weight: 600;
cursor: pointer;
display: block;
margin: 0 auto;
}

.vcet-submit-btn:hover {
background-color: #1e40af;
}

.vcet-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: rgba(0, 0, 0, 0.5);
display: none;
align-items: center;
justify-content: center;
z-index: 9999;
}

.vcet-modal-content {
background: white;
padding: 2rem;
max-width: 500px;
width: 90%;
text-align: center;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.vcet-modal-buttons {
display: flex;
flex-direction: column;
gap: 1rem;
margin-top: 1.5rem;
}