﻿h2
{
    background-color: lightgrey;
    border: 1px solid #000000; 
    border-style: double;
    text-align: center;
}

h4
{
    background-color: lightgrey;
    border: 1px solid #000000; 
    border-style: double;
    text-align: center;
}

.Label
{
    background-color: white;
    border: 1px solid #000000; 
    border-style: solid;
    padding-right: 20px;
    padding-left: 20px;
}

.td_Center
{
    text-align: center;
}

.td_Left
{
    text-align: left;
}

.td_Right
{
    text-align:right;
}
.Textbox1
{
    font-size: large;
    width:80%;
}

.styPanel
{
    border: medium groove black;
    font-size: large;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    background-color: lightyellow;
    padding: 10px;
}

.styPanelInvisible {
    border: none;
    font-size: large;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    background-color: none;
    padding: 1px;
}

.styPanel2
{
    font-size: large;
    font-weight: bold;
    border-color: black;
    border-style: groove;
    border-width: thick;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    background-color:lightgreen;
    padding: 5px;
}

.styPanelClassy
{
    border: medium groove red;
    font-size: large;
    font-family: Corbel;
    text-align: center;
    background-color: lightyellow;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
}

.styTable80PcentLeftalign {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.styTable1
{
        width:100%;
        margin-left: auto;
        margin-right: auto;
}

.styButton
{
    font-size: large;
    }

.styMedText
{
    font-size: medium;
    font-weight: bold;
    font-family: "Corbel Light";
}

.styLgeText
{
    font-size: x-large;
    font-weight: bold;
}

.styLgeGrnText
{
    font-size: large;
    font-weight: bold;
    text-decoration-color: blue;
}

.styXLgeText
{
    font-size: x-large;
    font-weight: bold;
}

.styXLgeUText
{
    font-size: x-large;
    font-weight: bold;
    text-decoration: underline;
}

.styXxLgeUText
{
    font-size: xx-large;
    font-weight: bold;
    text-decoration: underline;
}

.styLeft
{
    text-align: left;
}

.styCenter
{
    text-align: center;
}

.styPic50 {
    border: 1px solid #000000;
    padding: 10px;
    width: 50%;
}

.styPic70 {
    border: 1px solid #000000;
    padding: 10px;
    width: 70%;
}

.styPic {
    border: 1px solid #000000;
    padding: 10px;
    width: 99%;
    margin-left: auto;
    margin-right: auto;
}

.styPicSmall
{
    border: 1px solid #000000; padding: 10px; width: 25%; border-style: Double;
}

.styLogo
{
    width: 80%;
}

.styTitle
{
    text-decoration:line-through;
}

.styForm
{
    font-size: x-large; 
    font-family: Arial, Helvetica, sans-serif; 
    text-align: center;
}

.styDdl
{
    width: 90%;
    font-size:x-large;
    font-family: Arial, Helvetica, sans-serif; 
    text-align: center;
}

.styTextLeft80Per 
{
    text-align: left;
    width: 80%;
}


.styTextCtr100Per
{
            text-align: center;
            width: 100%;
}

.faq-panel {
    max-width: 700px;
    margin: 20px auto;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: relative;
}

    .faq-panel.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

/* Close button styling */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

    .close-btn:hover {
        color: #0077cc;
    }

.btn-outline-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.4); /* soft glow */
}

    .btn-outline-success:hover {
        background-color: #28a745;
        color: #fff;
        box-shadow: 0 0 12px rgba(40, 167, 69, 0.6);
    }

/* Modal backdrop */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

/* Modal box */
.modal-content {
    background: #111;
    margin: 10% auto;
    padding: 20px;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 20px #00ffff;
}

/* Larger photo */
#modalPhoto {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* Close button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    cursor: pointer;
}

    .close:hover {
        color: #fff;
    }