﻿/*------------------------------------
    #PUBLIC SITE CONTENT CSS 
--------------------------------------*/
/* Sticky Header */
.public_header { position: fixed; top: 0; width: 100%; background-color: #333; color: #fff; z-index: 1000; padding: 10px 0; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }
.public_header .public_header_inner_container { width: 80%; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.public_header_logo { height: 12px; width: 211px; background-image: url('../Img/majestic_blade_fulltext.png'); background-repeat: no-repeat; background-size: contain; display: inline-block; }
.public_header_link { color: #fff; text-decoration: none; font-size: 14px; font-family: 'Open Sans', Tahoma, sans-serif; padding: 5px 10px; background-color: #555; border-radius: 5px; transition: background-color 0.3s ease; }
.public_header_link:hover { background-color: #777; }
.public_header_link_back_btn { color: #555; text-decoration: none; font-size: 14px; font-family: 'Open Sans', Tahoma, sans-serif; padding: 5px 10px; background-color: #fff; border-radius: 5px; transition: background-color 0.3s ease; }
.public_header_link_back_btn:hover { color: #fff; background-color: #777; }
/* Background Container */
.public_container { background-image: url('../Img/BackgroundOption8.jpg'); background-size: cover; background-position: center; height: 100vh; display: flex; justify-content: center; align-items: center; }
/* Wrapper for White Box Content */
.public_wrapper { background-color: white; border-radius: 10px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); width: 80%; height: 80%; display: flex; flex-direction: column; box-sizing: border-box; }
/* Title Section */
.public_wrapper_title { background-color: #f0f0f0; color: #505050; border-bottom: 1px solid #d3d3d3; height: 50px; line-height: 50px; border-radius: 10px 10px 0 0; padding-left: 15px; font-family: 'Open Sans', Tahoma, sans-serif; font-size: 15px; font-weight: bold; color: #707070; }
/* Scrollable Content */
.public_scroll_content { flex: 1; overflow-y: auto; padding: 10px; font-family: 'Open Sans', Tahoma, sans-serif; font-size: 14px; color: #555; line-height: 1.6; border-radius: 5px; background-color: #f9f9f9; }
/* Sticky Footer */
.public_footer { position: fixed; bottom: 0; width: 100%; text-align: center; background-color: #333; color: #fff; z-index: 1000; padding: 10px 0; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }
.public_footer .public_footer_container { font-size: 12px; color: #dfdddd; }
