/* -----------------------------------------------------
   AXEL DEV LAB — PUBLIC UI BRANDING
   Subscription pages, Unsubscribe, Confirm pages, Archive
   Colors: AxelGold (#F59E0B), AxelBlue (#1E3A8A)
------------------------------------------------------ */

/* Global typography */
body, html {
    font-family: "Inter", "Poppins", sans-serif !important;
    background: #ffffff !important;
    color: #1E3A8A !important;
    margin: 0;
    padding: 0;
}

/* Main container */
.container, .content, .lm-container {
    max-width: 720px !important;
    margin: auto !important;
    padding: 30px !important;
    background: #ffffff !important;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Headings */
h1, h2, h3 {
    color: #1E3A8A !important; /* AxelBlue */
    font-weight: 700 !important;
    margin-bottom: 10px;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 20px;
}

/* Paragraph text */
p, label {
    font-size: 16px !important;
    color: #374151 !important;
    line-height: 1.55;
}

/* Buttons */
button, .btn, input[type="submit"] {
    background-color: #F59E0B !important; /* AxelGold */
    color: #000 !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    width: 100%;
    transition: 0.2s ease-in-out;
}

button:hover, .btn:hover, input[type="submit"]:hover {
    background-color: #c97c08 !important;
}

/* Input fields */
input, select, textarea {
    width: 100% !important;
    padding: 12px !important;
    margin: 8px 0 !important;
    border: 1px solid #1E3A8A !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    background-color: #f8fafc !important;
}

/* Links */
a {
    color: #1E3A8A !important;
    font-weight: 600;
    text-decoration: none !important;
}

a:hover {
    color: #F59E0B !important;
    text-decoration: underline !important;
}

/* Success message */
.success, .alert-success {
    background: #d1fae5 !important;
    border-left: 5px solid #059669 !important;
    padding: 12px;
    border-radius: 6px;
}

/* Error message */
.error, .alert-danger {
    background: #fee2e2 !important;
    border-left: 5px solid #dc2626 !important;
    padding: 12px;
    border-radius: 6px;
}

/* Archive list styling */
.archive-item {
    border-bottom: 1px solid #e5e7eb !important;
    padding: 15px 0 !important;
}

.archive-item h3 {
    margin-bottom: 5px !important;
}

/* Footer */
.footer {
    text-align: center;
    color: #6b7280 !important;
    margin-top: 30px;
    font-size: 14px;
}
