/* =============================================================
   AethCore — base.css
   Global reset, typography, and link styles.
   ============================================================= */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Tahoma, Verdana, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.4;
    background-color: #d0d0d0;
    color: #222;
}

a {
    color: #c85000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* --- Breadcrumbs --- */

.breadcrumb {
    font-size: 11px;
    color: #888;
    margin-bottom: 10px;
}

.breadcrumb a {
    color: #888;
}

.breadcrumb a:hover {
    color: #c85000;
}

/* --- Utility classes --- */

.no-pad {
    padding: 0 !important;
}

/* --- Thread / forum notices --- */

.thread-locked-notice {
    background: #fff8e1;
    border: 1px solid #ffc107;
    padding: 8px 12px;
    font-size: 12px;
    color: #5a4000;
    margin: 10px 14px;
}

.login-prompt {
    padding: 10px 14px;
    font-size: 12px;
    color: #666;
    border-top: 1px solid #e0e0e0;
}

/* --- BBCode elements --- */

.bbcode-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 6px 0;
}

.bbcode-table {
    border-collapse: collapse;
    margin: 6px 0;
    font-size: 13px;
}

.bbcode-table th,
.bbcode-table td {
    border: 1px solid #ccc;
    padding: 4px 8px;
    text-align: left;
}

.bbcode-table th {
    background: #f0f0f0;
    font-weight: bold;
}

.bbcode-list {
    margin: 6px 0 6px 20px;
    font-size: 13px;
}

.bbcode-quote {
    margin: 8px 0;
    padding: 8px 12px;
    border-left: 3px solid #c85000;
    background: #f0f0f0;
    font-size: 13px;
    line-height: 1.5;
}

.bbcode-quote cite {
    display: block;
    font-weight: bold;
    font-style: normal;
    font-size: 11px;
    color: #777;
    margin-bottom: 4px;
}

/* --- Email verification banner --- */

.verify-banner {
    background: #fff8e1;
    border: 1px solid #ffc107;
    padding: 8px 12px;
    font-size: 12px;
    color: #5a4000;
    margin: 0 0 10px 0;
}

.verify-banner a {
    color: #c85000;
    font-weight: bold;
}

/* --- Cookie consent banner --- */

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ccc;
    padding: 14px 20px;
    font-size: 13px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.3);
}

#cookie-banner p {
    flex: 1;
    margin: 0;
    line-height: 1.4;
}

#cookie-banner a {
    color: #c85000;
}

.cookie-banner-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
