/* Registration Modal Styles */
#registrationModal .modal-content {
    border-radius: 10px;
    border: none;
}

#registrationModal .modal-header {
    background: #000d10;
    color: white;
    border-radius: 10px 10px 0 0;
}

#registrationModal .modal-title {
    color: white;
}

#registrationModal .modal-title i {
    margin-right: 8px;
    color: white;
}

#registrationModal .close {
    color: white;
    opacity: 0.9;
    text-shadow: none;
}

#registrationModal .close:hover {
    color: white;
    opacity: 1;
}

#registrationModal .close span {
    color: white;
    font-size: 28px;
    line-height: 1;
}

#registrationModal .modal-footer {
    border-top: 1px solid #eee;
}

#registrationModal .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

#registrationModal .form-control:focus {
    border-color: #000d10;
    box-shadow: 0 0 0 0.2rem rgba(0, 13, 16, 0.25);
    outline: none;
}

#registrationModal .form-control-sm {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 12px;
}

#registrationModal .form-control-sm:focus {
    border-color: #000d10;
    box-shadow: 0 0 0 0.2rem rgba(0, 13, 16, 0.25);
    outline: none;
}

#registrationModal .input-group-text {
    border: 2px solid #e0e0e0;
    border-right: none;
    border-radius: 8px 0 0 8px;
    background-color: #f8f9fa;
}

#registrationModal .alert {
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 12px;
}

/* Fee Summary Styling */
#feeSummary {
    font-size: 13px;
    padding: 12px;
}

#feeSummary > div:first-child {
    font-size: 14px;
    margin-bottom: 8px;
}

#guideFeeText, #parkingFeeText {
    font-size: 13px;
    padding: 3px 0;
}

/* Loading spinner */
.spinner-border {
    vertical-align: middle;
    margin-left: 5px;
}

/* Button styles */
#submitRegistration {
    min-width: 120px;
    background-color: #000d10;
    border-color: #000d10;
    color: white;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#submitRegistration:hover {
    background-color: #001820;
    border-color: #001820;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
      /* Minimalist Toast Notifications */
.minimal-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    min-width: 300px;
    max-width: 500px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-left: 4px solid;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideDown 0.3s ease-out;
    font-size: 14px;
    color: #333;
}

.minimal-toast-success {
    border-left-color: #28a745;
}

.minimal-toast-error {
    border-left-color: #dc3545;
}

.minimal-toast-info {
    border-left-color: #17a2b8;
}

.minimal-toast-warning {
    border-left-color: #ffc107;
}

.minimal-toast-message {
    flex: 1;
}

.minimal-toast-close {
    background: none;
    border: none;
    color: #888;
    font-size: 18px;
    cursor: pointer;
    margin-left: 15px;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.minimal-toast-close:hover {
    color: #333;
}

@keyframes slideDown {
    from {
        transform: translate(-50%, -100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.minimal-toast.hiding {
    animation: fadeOut 0.3s ease-out;
}