﻿



/* Spinner style */
.spinner {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #c0392b; /* Dark red (example) */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.blockUI.blockMsg {
    display: flex !important;
    justify-content: center;
    align-items: center;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

.hero-section h1 {
    animation: fadeInDown 1.2s ease;
}

.hero-section p {
    animation: fadeInUp 1.5s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card hover effect */
.card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

/* Modal Styling */
.registration-modal {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 8px 30px rgba(0,0,0,0.3);
    animation: fadeInUp 0.4s ease;
}

/* Gradient Header */
.modal-header.bg-gradient {
    background: linear-gradient(45deg, #007bff, #28a745) !important;
    border-bottom: none;
}

/* Input Styling */
.elegant-input {
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    transition: all 0.3s ease;
}

    .elegant-input:focus {
        border-color: #007bff;
        box-shadow: 0px 0px 8px rgba(0,123,255,0.3);
    }

/* Gradient Button */
.btn-gradient {
    background: linear-gradient(45deg, #007bff, #28a745);
    color: white;
    border-radius: 8px;
    transition: 0.3s;
    border: none;
}

    .btn-gradient:hover {
        background: linear-gradient(45deg, #0056b3, #1e7e34);
        transform: translateY(-2px);
    }

/* Modal Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#prospectusPage table,
#prospectusPage th,
#prospectusPage td {
    border: 1px solid #000 !important;
    border-collapse: collapse !important;
}

/* hints for page breaks */
#prospectusPage table, #prospectusPage table tbody, #prospectusPage table tr {
    page-break-inside: avoid; /* avoid slicing rows */
}

/* hide UI controls during PDF (if you render them on screen) */
@media print {
    .no-print, .btn {
        display: none !important;
    }
}

