h1, h2, h3, h4, h6 {
	color: #E8E8E8;
	}

h5 {
	color: #3B3B3B;
	}

#side-carousel img {
	margin: 0 auto;
	}

.footer-blurb {
    padding: 30px 0;
    margin-top: 20px;
    background-color:#D3D3D3;
    color: white;
}
    
.footer-blurb-item {
    padding: 20px;
    }
 
.small-print {
	background-color: #fff;
	padding: 30px 0;
}

.feature,
.page-intro,
.article-intro,
.small-print {
	text-align: center;
	}
	
/* Header Styling (adjust to match your logo/branding) */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px; /* Adjust to your header's actual height */
    background: #fff; /* Adjust as needed */
    z-index: 1100; /* Higher than banner */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-branding img {
    max-height: 60px; /* Adjust based on your logo size */
}

.logo-branding h1 {
    margin: 0;
    font-size: 1.5rem;
}

/* Notification Banner Styling */
.notification-banner {
    position: fixed;
    top: 80px; /* Matches header height, adjust as needed */
    left: 0;
    right: 0;
    z-index: 1000;
    background: #00B4E6; /* Solid color */
    color: #fff;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.5s ease-in-out;
}

.banner-content {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.banner-content .glyphicon-comment {
    font-size: 1.25rem;
    line-height: 1;
}

.banner-content h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: bold;
    display: inline;
}

.banner-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.banner-close:hover {
    color: #ccc;
}

@keyframes slideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Chat Indicator Styling (inside panel) */
.chat-indicator {
    text-align: center;
    padding: 0.5rem;
    background: #f8f9fa; /* Light background to blend with panel */
    border: none; /* Remove default list-group-item border */
    animation: pulse 2s infinite ease-in-out;
}

.tooltip-content {
    display: inline-block;
    background: #00B4E6;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 1.75rem;
    max-width: 100%;
    margin-bottom: 0.5rem;
    position: relative;
}

.tooltip-content::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #00B4E6;
}

.pointer-arrow {
    display: block;
    margin: 0 auto;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Assistive Text for Accessibility */
.assistive-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header {
        height: 60px; /* Adjust for smaller screens */
    }

    .notification-banner {
        top: 60px; /* Match header height */
    }

    .banner-content h2 {
        font-size: 1rem;
    }

    .banner-content .glyphicon-comment {
        font-size: 1rem;
    }

    .logo-branding h1 {
        font-size: 1.25rem;
    }

    .tooltip-content {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .pointer-arrow {
        width: 24px;
        height: 24px;
    }
}

/* General Styling for All Input Fields and Selects */
.form-group input,
.form-group select {
    border: 1px solid #461E96; /* Blue border for all fields */
    border-radius: 5px; /* Rounded corners */
    padding: px; /* Inner spacing */
    width: 100%; /* Full width */
    box-sizing: border-box; /* Include padding in width */
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth hover/focus effects */
}

/* Focus Effects for All Fields */
.form-group input:focus,
.form-group select:focus {
    border-color: #211359; /* Darker blue on focus */
    box-shadow: 0 0 5px rgb(193, 187, 238); /* Blue glow */
    outline: none; /* Remove default outline */
}

/* Submit Button Styling */
input[type="submit"] {
    background-color: #3c289b; /* Custom background color */
    color: #ffffff; /* White text */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    padding: 5px 20px; /* Button padding */
    font-size: 16px; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
}

/* Submit Button Hover Effect */
input[type="submit"]:hover {
    background-color: #211359; /* Darker background on hover */
    color: #E8E8E8; /* Slightly lighter text */
}
/* Custom Styling for the Description Textarea */
#description {
    height: 150px; /* Set a taller default height */
    resize: vertical; /* Allow users to resize vertically only */
    border: 1px solid #461E96; /* Match the border style of other fields */
    border-radius: 5px; /* Rounded corners */
    padding: 10px; /* Inner spacing */
    background-color: #ffffff; /* White background */
    box-sizing: border-box; /* Include padding in width/height */
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth hover/focus effects */
}

/* Focus Effect for Textarea */
#description:focus {
    border-color: #211359; /* Darker blue on focus */
    box-shadow: 0 0 5px rgb(193, 187, 238); /* Blue glow */
    outline: none; /* Remove default outline */
}
