
/* main page */

body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    background:#f6f8fa;
    color:#333;
}

.wrapper{
    max-width:950px;
    margin:60px auto;
    padding:45px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

h1{
    font-size:3rem;
    margin-bottom:5px;
}

.tagline{
    font-size:1.4rem;
    color:#666;
    margin-bottom:35px;
}

h2{
    margin-top:25px;
}

h3{
    margin-top:25px;
}

p{
    line-height:1.6;
}

ul{
    line-height:1.8em;
}

.badge{
    display:inline-block;
    background:#eef5ff;
    color:#2459a6;
    padding:10px 16px;
    border-radius:30px;
    margin-top:20px;
}

.architecture{
    background:#f7f7f7;
    padding:20px;
    border-radius:8px;
    font-family:monospace;
    margin-top:20px;
}

footer{
    margin-top:50px;
}

a{
    color:#0066cc;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

.wrapper{
    width:1100px;
    margin:30px auto;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

header{
    padding:30px 40px 20px;
    border-bottom:1px solid #ddd;
}

.logo{
    font-size:42px;
    font-weight:bold;
    color:#222;
}

.tagline{
    margin-top:6px;
    font-size:18px;
    color:#666;
}

nav{
    background:#222;
}

nav ul{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    flex-wrap:wrap;
}

nav li{
    margin:0;
}

nav a{
    display:block;
    padding:14px 15px;
    color:#fff;
    font-size:15px;
    text-decoration:none;
}

nav a:hover{
    background:#444;
}

.content{
    padding:10px 40px 10px 40px;
}

/* header */
.menu-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
}

.menu-left ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-left li {
    padding: 0 20px;
}

.menu-right {
    display: flex;
    align-items: center;
    padding-top: 25px;
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-dropdown-label {
    display:flex;
    padding: 0 25px 25px 0;
    cursor: pointer;
    color:#fff;
    align-items: center;
    height: 100%;
}

.user-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #444;
    min-width: 120px;
    z-index: 1000;
}

.user-dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
}

.user-dropdown-content a:hover {
    background-color: #555;
}

.user-dropdown:hover .user-dropdown-content {
    display: block;
}


/* sign up */
.form-group {
    margin-bottom: 18px;
    margin-left: 15px;
    display: flex;
    align-items: center;
}

.form-group label {
    width: 100px;
    font-weight: bold;
}

.form-group input {
    width: 300px;
    padding: 8px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* login page */
.auth-form {
    margin-top: 20px;
}


.form-group {
    margin-bottom: 18px;
    margin-left: 15px;
    display: flex;
    align-items: center;
}


.form-group label {
    width: 100px;
    font-weight: bold;
}


.form-group input {
    width: 300px;
    padding: 8px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}


.btn-primary {
    margin-left: 115px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background-color: #2c6bed;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


.btn-primary:hover {
    background-color: #1f55bd;
}

/* dashboard */
.dashboard-box {
    padding: 20px 30px;
}


.notice-box {
    margin-top: 20px;
    padding: 15px;
    border-left: 4px solid #2c6bed;
}


.profile-box,
.stats-box,
.activity-box {
    margin-top: 20px;
    padding: 15px;
    border-top: 1px solid #ddd;
}


.stat-row {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}


.stat-card {
    width: 140px;
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
}


.stat-card strong {
    display: block;
    font-size: 28px;
}


.stat-card span {
    display: block;
    margin-top: 5px;
}


.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
}


.btn-primary {
    color: white;
    background-color: #2c6bed;
}


.btn-primary:hover {
    background-color: #1f55bd;
}


.btn-secondary {
    margin-top: 20px;
    color: white;
    background-color: #666;
}


.btn-secondary:hover {
    background-color: #444;
}

/* create-dashboard */
.error-message {
    margin: 15px;
    padding: 10px;
    color: #b00020;
    border-left: 4px solid #b00020;
}


.form-group select,
.form-group textarea {
    width: 300px;
    padding: 8px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;

}


.textarea-group {
    align-items: flex-start;
}


.textarea-group label {
    padding-top: 8px;
}


/* buttons */

.btn-primary {
    margin-left: 15px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background-color: #2c6bed;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1f55bd;
}

.btn-primary:active {
    transform: translateY(1px);
}

/* site-footer */

.site-footer {
    margin-top: 10px;
    padding: 5px 20px;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}

.footer-text {
    margin-top: 25px;
    font-size: 0.8rem;
    color: #9ca3af;
    text-align: center;
    text-decoration: none;
}

.footer-text a:hover {
    color: #444;
}

.footer-separator {
    margin: 0 20px;
}

.footer-text a {
    color: #9ca3af;
    text-decoration: none;
}

/* agent form */

.form-group {
    margin-bottom:20px;
}

.form-group label {
    display:block;
    margin-bottom:5px;
    font-weight:600;
}

.form-group select,
.form-group input,
.form-group textarea {
    width:100%;
    max-width:500px;
    padding:8px;
}

/* radio buttons */
.inline-group {
    display:flex;
    align-items:center;
    gap:20px;
}

.inline-group > label {
    margin:0;
}

.radio-group {
    display:flex;
    align-items:center;
    gap:20px;
}

.radio-option {
    display:flex;
    align-items:center;
    gap:6px;
    font-weight:normal;
}

.radio-option input {
    width:auto;
    margin:0;
}

/* agent forms */
.input-small {
    width: 100px !important;
}

.input-select-small {
    width: 200px !important;
}

