/* File: assets/admin.css */

.weo-dashboard-wrapper {
    max-width: 1100px;
    margin-top: 20px;
}

.weo-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}

.weo-header h1 {
    font-size: 2.2em;
    font-weight: 700;
    color: #1d2327;
}

.weo-header h1 span {
    color: #2271b1;
}

.weo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

/* Cards */
.weo-card {
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.weo-card h2 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f1;
    font-size: 1.3em;
}

/* Forms */
.weo-main textarea {
    width: 100%;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    padding: 10px;
    font-family: monospace;
    background: #f6f7f7;
}

.weo-checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Sidebar */
.status-card {
    background: #f0f6fc;
    border-color: #cce5ff;
}

.active {
    color: #00a32a;
    font-weight: bold;
}

.file-link {
    font-family: monospace;
    background: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border: 1px solid #dcdcde;
}

/* Support Button */
.support-card {
    background: #fffcf0;
    border-color: #f0e6c4;
    text-align: center;
}

.bmc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFDD00;
    color: #000;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    margin-top: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s;
    width: 80%;
}

.bmc-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    color: #000;
    background: #ffe233;
}

.bmc-button .dashicons {
    margin-right: 8px;
    color: #d32f2f;
}

.tiny-note {
    font-size: 11px;
    color: #888;
    margin-top: 10px;
    font-style: italic;
}

/* Author Card */
.author-card {
    text-align: center;
    border-top: 4px solid #2271b1;
    padding-top: 0;
    overflow: hidden;
}

.author-header {
    background: #2271b1;
    margin: 0 -20px;
    padding: 10px;
    color: #fff;
}

.author-header h3 {
    color: #fff;
    margin: 0;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-content {
    padding-top: 15px;
}

.btn-brand {
    display: inline-block;
    background: #2271b1;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-brand:hover {
    background: #135e96;
    color: #fff;
}

.small-link {
    margin-top: 15px;
    font-size: 12px;
    color: #646970;
}

.small-link a {
    text-decoration: none;
    color: #646970;
}

@media (max-width: 782px) {
    .weo-grid {
        grid-template-columns: 1fr;
    }
}