﻿.navbar-custom{
    background-color:cadetblue;
    color:white;
}

.public-container{
    min-height:81vh;
}


.form-control:focus {
    box-shadow: none;
    border-color: #6c63ff;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* Background overlay */
.modalBackground {
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9998;
}

/* Main modal panel style */
.modalPanel {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 450px;
    margin: 1% auto;
    z-index: 9999;
    animation: fadeInScale 0.3s ease-in-out;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

/* Header */
.modal-header {
    padding: 12px 20px;
    border-bottom: 1px solid #ddd;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Body */
.modal-body {
    padding: 20px;
    font-size: 1rem;
}

/* Labels */
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

/* Footer */
.modal-footer {
    padding: 12px 20px;
    border-top: 1px solid #ddd;
    text-align: right;
}

    /* Button inside modal */
    .modal-footer .aspNet-Button,
    .modal-header .aspNet-Button {
        padding: 6px 16px;
        font-size: 0.95rem;
        border: none;
        border-radius: 4px;
        background-color: #6c757d;
        color: white;
        cursor: pointer;
    }

        .modal-footer .aspNet-Button:hover {
            background-color: #5a6268;
        }

/* Animation */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}







