﻿/* Created for Onine Demo page*/
.navbar-default {
    background: #c6487e;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    min-height: 50px;
    position: relative;
}

.navbar-header {
    height: 50px;
    display: flex;
    align-items: center;
    line-height: 50px;
}

.navbar-brand {
    color: #FFFFFF !important;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 0 15px;
    position: relative;
    display: flex;
    align-items: center;
    height: 50px;
    line-height: 50px;
    margin: 0;
    transition: all 0.3s ease;
}

    .navbar-brand:before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.3), rgba(255,255,255,0));
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .navbar-brand:hover {
        color: #FFFFFF !important;
        opacity: 0.9;
    }

        .navbar-brand:hover:before {
            opacity: 1;
        }

    .navbar-brand i.fa-credit-card {
        margin-right: 8px;
        color: #FFFFFF;
        font-size: 18px; /* Slightly smaller icon */
        line-height: 50px;
        opacity: 0.95; /* Slightly softer white */
    }

#navbar-container {
    background: #c6487e;
    padding-left: 5px;
    padding-right: 15px;
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
}

/* Add a subtle line under navbar */
.navbar-default:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.1), rgba(255,255,255,0));
}

.main-container {
    padding-top: 0px;
}

/* Panel styling */
.panel {
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.panel-primary > .panel-heading {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    border: none;
    padding: 15px;
    position: relative;
    overflow: hidden;
    color: white;
}

.panel-info > .panel-heading {
    background: linear-gradient(135deg, #29B6F6, #039BE5);
    border: none;
    color: white;
    padding: 15px;
    position: relative;
    overflow: hidden;
}

.panel-heading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.1), rgba(255,255,255,0));
    transform: skewX(-15deg);
    pointer-events: none;
}

.panel-title {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
}

    .panel-title i {
        margin-right: 10px;
    }

.panel-body {
    background: #fff;
    border-radius: 0 0 4px 4px;
    padding: 20px;
}

/* Rest of your existing styles */
.form-group {
    margin-bottom: 15px;
}

.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.input-group-addon {
    background: #f8f9fa;
    border-color: #e9ecef;
}

.result-area {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.required {
    color: #dc3545;
    visibility: hidden;
}

.checkbox label {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 575;
}

.fa {
    width: 16px;
    text-align: center;
}

.form-control, .panel {
    transition: all 0.3s ease;
}

.control-label {
    font-weight: normal;
    color: #666;
}

/* Navbar container specific */
#navbar-container {
    padding-left: 15px;
    padding-right: 15px;
}

.navbar-header {
    height: 50px;
    display: flex;
    align-items: center;
}

/* Additional container spacing */
.container {
    padding-top: 0px;
}

/* No-skin body class specific */
body.no-skin {
    background-color: #f8f8f8;
    min-height: 100vh;
}

/* Update checkbox styling */
.checkbox {
    margin-top: 0;
    margin-bottom: 0;
}

    .checkbox label {
        display: inline-block;
        position: relative;
        padding-left: 20px;
        margin-bottom: 0;
        cursor: pointer;
        font-size: 14px;
        line-height: 20px;
        color: #333;
    }

    .checkbox input[type="checkbox"] {
        margin-top: 3px;
        margin-left: -20px;
    }

/* Label styling */
.control-label {
    font-weight: normal;
    color: #666;
    font-size: 14px;
    text-align: right;
    padding-right: 10px;
}

/* Form group adjustments */
.form-group {
    margin-bottom: 8px; /* Reduced spacing between form groups */
}

/* Input field styling */
.input-group-addon {
    padding: 4px 8px; /* Slightly smaller padding */
}

.form-control {
    height: 30px; /* Slightly reduced height */
}

/* Fee Payer select styling */
select.form-control {
    height: 30px;
    padding: 4px 8px;
}

.btn {
    margin-bottom: 10px;
}

.checkbox-list .checkbox {
    margin-bottom: 15px; 
}

.checkbox-list .checkbox:last-child {
    margin-bottom: 25px; 
}

.mb-3 {
    margin-bottom: 15px;
}

.mb-4 {
    margin-bottom: 25px;
}

.form-group.row {
    display: flex;
    align-items: center;
}

.control-label {
    font-weight: normal;
    color: #555;
    text-align: right;
    padding-right: 15px;
}