/* /home/a1appbuilders/public_html/addons/customer-reviews-system/assets/css/index.css */

/* Base Reset & Typography */
*, *:before, *:after {
    box-sizing: border-box;
}

body {
    background: #eef5f9;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    min-height: 100vh;
}

/* Header Component */
.header-container {
    width: 100%;
    background: #003366;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    text-align: center;
}

.header-container a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.6rem;
}

/* Footer Marquee Component */
.marquee-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    overflow: hidden;
    padding: 10px 0;
    z-index: 1000;
}

.marquee-text {
    display: inline-block;
    white-space: nowrap;
    color: #fff;
    font-size: 1.2rem;
    font-weight: normal;
    padding-left: 100%;
    animation: marquee-left 15s linear infinite;
    font-family: Arial, sans-serif;
}

.marquee-text a {
    color: #fff;
    text-decoration: underline;
}

@keyframes marquee-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Main Container */
.container {
    max-width: 750px;
    margin: 100px auto 80px auto;
    background: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Typography */
h2 {
    text-align: center;
    color: #003366;
    margin-bottom: 25px;
    font-weight: bold;
    font-size: 1.7rem;
}

/* Links */
a {
    color: #003366;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Messages */
.message {
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
}

.error {
    color: #cc0000;
}

.success {
    color: green;
}

/* Utility Classes */
.logout {
    text-align: right;
    margin-bottom: 15px;
}

.nav-buttons {
    text-align: center;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    background: #003366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn:hover {
    background: #004488;
}

.btn-danger {
    background: #cc0000;
}

.btn-danger:hover {
    background: #aa0000;
}