/* ============================================================
   Adventi Admin Styles
   Safe for WordPress Admin + Envato Requirements
============================================================ */

/* Typography helpers */
.adventi-title-green {
    color: #176917;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 40px;
}

.adventi-margin-bottom {
    margin-bottom: 20px;
}

/* Image previews */
.adventi-image-preview {
    max-width: 150px;
    height: auto;
    border: 1px solid #ccc;
    display: block;
    margin-bottom: 8px;
}

.adventi-no-image {
    font-style: italic;
    opacity: 0.7;
}

/* Sections */
.adventi-section {
    margin-top: 30px;
    margin-bottom: 40px;
}

.adventi-admin {
    max-width: 1100px;
    padding: 20px 0;
}

.adventi-title {
    font-size: 32px;
    margin-bottom: 30px;
}

/* Forms + tables */
.adventi-table-wide input[type="text"],
.adventi-table-wide input[type="url"],
.adventi-table-wide input[type="number"] {
    width: 100%;
}

.adventi-table-heading {
    color: #176917;
    font-weight: 700;
}

.adventi-details summary {
    cursor: pointer;
    font-weight: 700;
    margin-bottom: 10px;
}

.adventi-details h3 {
    display: inline;
}

/* Cards: Dashboard */
.adventi-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    margin-top: 15px;
}

.adventi-card {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 20px 25px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
}

.adventi-card h3 {
    margin: 0;
    font-size: 16px;
    color: #555;
}

.adventi-card .num,
.adventi-card .number {
    font-size: 28px;
    font-weight: 600;
    margin-top: 10px;
    color: #111;
}

.adventi-card .number {
    font-size: 40px;
}

/* Leads Table */
.adventi-table td,
.adventi-table th {
    font-size: 14px;
}

/* Quick Start Guide */
.adventi-guide {
    margin-top: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.adventi-guide ul li:first-child:before {
    content: "4.";
}
.adventi-guide ul li:last-child:before {
    content: "5.";
}

.adventi-guide h2 {
    margin-top: 0;
}

.adventi-guide .previews {
    max-width: 1000px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    gap: 10px;
}

.adventi-guide .previews div {
    display: flex;
    flex-direction: column;
    flex: 0 0 32%;
    margin-bottom: 20px;
}

.adventi-guide .previews div img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

/* Gift Settings: dual columns */
.tables-wrap {
    display: flex;
    gap: 150px;
}

.tables-wrap .custom-images-table {
    display: none;
}

@media (max-width: 767px) {
    .adventi-guide .previews div {
        flex: 0 0 100%;
    }


}