/* Exigoals Reseller Panel - Basic Styling */

.exigoals-reseller-reg,
.exigoals-reseller-login,
.exigoals-reseller-profile,
.exigoals-reseller-products form {
    background: #fff;
    padding: 24px 28px;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    max-width: 500px;
    margin: 24px auto 24px auto;
}

.exigoals-reseller-products {
    list-style: none;
    margin: 0;
    padding: 0;
}

.exigoals-reseller-products li {
    background: #fafbfc;
    margin-bottom: 20px;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e2e2e2;
    box-shadow: 0 1px 6px rgba(0,0,0,0.02);
}

.exigoals-reseller-products img {
    margin-bottom: 8px;
}

.exigoals-reseller-products input[type="number"] {
    width: 80px;
    padding: 5px 7px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-left: 6px;
}

.exigoals-reseller-products .button {
    margin-top: 6px;
}

.exigoals-reseller-store {
    max-width: 1000px;
    margin: 24px auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 32px 32px 28px 32px;
}

.reseller-products-list {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin: 18px 0;
}

.reseller-product {
    width: 230px;
    background: #f7fafd;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 1px 6px rgba(0,0,0,0.025);
}

.reseller-product h3 {
    font-size: 1.07em;
    margin: 0 0 8px;
}

.reseller-product img {
    height: 140px;
    width: auto;
    object-fit: contain;
    margin-bottom: 8px;
    border-radius: 8px;
    background: #fff;
}

.reseller-product p {
    margin: 7px 0 4px 0;
    font-size: 1em;
}

.reseller-product .button {
    display: inline-block;
    background: #2167de;
    color: #fff !important;
    border: none;
    border-radius: 5px;
    padding: 7px 18px;
    margin-top: 10px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.15s;
}
.reseller-product .button:hover {
    background: #174c9e;
}

.notice-success {
    background: #e8faea;
    border-left: 4px solid #6cd47f;
    padding: 12px;
    margin-bottom: 20px;
    color: #2b6849;
    border-radius: 7px;
}

.notice-error {
    background: #ffeaea;
    border-left: 4px solid #f33d3d;
    padding: 12px;
    margin-bottom: 20px;
    color: #a40018;
    border-radius: 7px;
}

.form-table th {
    text-align: left;
    padding: 7px 16px 7px 0;
}
.form-table td {
    padding: 7px 0;
}

/* Responsive for mobile */
@media (max-width: 700px) {
    .reseller-products-list,
    .exigoals-reseller-products {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .reseller-product {
        width: 100%;
        max-width: 95vw;
    }
    .exigoals-reseller-store {
        padding: 12px 2vw;
    }
}
