.edu-breadcrumb-area{
    display: none;
}

#page_title_box{
    display: flex;
    align-items: center; /* Centers items vertically */
    justify-content: center; /* Centers items horizontally */
    height: 200px; /* Example height for the container */
}

.select-box-heigh-50{
    height: 50px;
}

.profile-upload {
    text-align: center;
    margin-bottom: 25px;
}

/* File Input Styling */
.file-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-input-custom {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.file-input-custom:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

.file-input-custom:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.file-input-custom.has-file {
    color: #28a745;
    border-color: #28a745;
}

.file-input-hidden {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.file-input-icon {
    color: #667eea;
    font-size: 18px;
}

.profile-upload-box {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    border: 3px dashed #667eea;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9ff;
    position: relative;
    overflow: hidden;
}

.profile-upload-box:hover {
    border-color: #764ba2;
    background: #f0f3ff;
}

.profile-upload-box.has-image {
    border-style: solid;
    border-color: #28a745;
}

.upload-placeholder {
    text-align: center;
    color: #667eea;
    font-weight: 600;
}

.upload-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.profile-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.file-info {
    font-size: 14px;
    color: #6c757d;
    margin-top: 8px;
}

.file-info i {
    color: #ffc107;
    margin-right: 5px;
}

.radio-group, .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.submit-btn {
    background: linear-gradient(135deg, #ff565b 0%, #b31414 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 30px;
}

.show-batch-details-button{
    width: 100%;
    border-radius: var(--radius);
    line-height: 38px;
    font-size: 16px;
    background: var(--color-pink);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 118, 124, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}



/* Unified selected file/image state */
.file-input-custom.has-file,
.profile-upload-box.has-image {
    color: #28a745;
    border-color: #28a745;
}



