html, body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f5f7fb;
    height: 100%;
    width: 100%;
}

p, h1, h2, h3, h4, h5, h6 {
margin: 0;
}

.login-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.login-body h4 {
    font-size: 19px;
    margin-bottom: 20px;
}

.login-box {
    background: #fff;
    padding: 25px;
    width: 320px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.login-input-box {
    margin-bottom: 15px;
    width: 100%;
}

.login-input-box label {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.login-input-box input {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    min-height: 20px;
}

.login-btn {
    width: 100%;
    padding: 10px;
    background: #4a6cf7;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    min-height: 40px;
    margin-top: 10px;
}

.login-btn:hover {
    background: #3d5ce0;
}

/* HEADER */
.header {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header h3 {
    font-size: 22px;
    font-weight: 600;
}

/* HEADER INNER */
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.header-inner select {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
    outline: none;
    cursor: pointer;
}

.header-inner button {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    background: #ef4444;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.header-inner button:hover {
    background: #dc2626;
}

/* CARDS GRID */
.admin-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    margin-top: 30px;
    width: 100%;
}

/* CARD */
.admin-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ICON BOX */
.card-inner-icon-container {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

b.required {
    font-size: 14px;
    color: red;
}

/* COLORS */
.orange { background: #f97316; }
.red    { background: #ef4444; }
.blue   { background: #3b82f6; }
.green  { background: #10b981; }

/* CARD TEXT */
.card-inner-info-container p {
    font-size: 14px;
    color: #64748b;
}

.card-inner-info-container h3 {
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hearderNavBox {
    display: flex;
    align-items: center;
    gap: 10px;
}

span.organizationBox img {
    width: 30px;
    height: 30px;
    border-radius: 50px;
}

span.organizationBox {
    display: flex;
    align-items: center;
    gap: 6px;
}

tr:last-child {
border-bottom: 0;
}

.hearderNavBox i {
    padding: 5px;
    font-size: 20px;
    cursor: pointer;
    background: #e4e4e4;
    border-radius: 15px;
    display: flex;
    color: black;
}

.hearderNavBox i:hover {
background: #d7d7d7;
}

/* NAVIGATION BOX */
.navigation-box {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    width: calc(100% - 40px);
}

.navigation-box h3 {
    margin-bottom: 25px;
    font-size: 18px;
}

/* NAV GRID */
.navigation-inner-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

/* NAV ITEM */
.nav-box {
    background: #f8fafc;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.nav-box:hover {
    background: #eef2ff;
    transform: translateY(-3px);
}

/* NAV INNER */
.nav-inner-span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-inner-span i {
    font-size: 18px;
    color: #4f46e5;
    display: flex;
}

.header-inner-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

button.viewBtn {
    height: 30px;
    width: auto;
    padding: 0 15px;
    border-radius: 10px;
    font-size: 13px;
    border: 0;
    background: #3c69ff;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}

span.uploadLogoSpan {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: dotted 2px #4f46e5;
    border-radius: 10px;
    background: #e7e6ff;
    color: #4f46e5;
    cursor: pointer;
}

span#uploadLogoContainer img {
    width: 100%;
    height: 100%;
}

.radio-group span p {
    font-size: 14px;
    color: #1b1b1b;
}

.radio-group span input {
    width: auto;
    accent-color: #4f46e5;
}

h4.form-section-title {
    color: black;
    font-size: 19px;
    margin-bottom: 25px;
}

.radio-group span {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.form-secton {
    border: 1px dotted #145ce6;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #f7faff;
    position: relative;
    width: 100%;
    max-width: 600px;
}

.date-input-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

button.viewBtn:hover {
opacity: 0.8;    
}

.nav-inner-span p {
    font-size: 14px;
    font-weight: 500;
}

span.card-inner-info-container {
    display: flex
;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    height: auto;
    gap: 5px;
}


/* LOADER */
.loader {
    width: 28px;
    height: 28px;
    border: 3px solid #e5e7eb;
    border-top: 3px solid #4f46e5;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: auto;
}

.loader.small {
    width: 18px;
    height: 18px;
    border-width: 2px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ARROW */
.nav-box i:last-child {
    color: #94a3b8;
    transform: rotate(327deg);
}


/* FORM WRAPPER */
.form {
    max-width: 700px;
    width: 100%;
    margin: 30px auto;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.photoHolder i:hover {
background: #e4e4e4;
}

.form-inner-block {
    width: 100%;
    max-width: 600px;
}

/* BLOCK */
.form-dom-box {
border: 1px dotted #145ce6;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #f7faff;
    position: relative;
}

/* INPUT GROUP */
.input-group-box {
    margin-bottom: 18px;
}

.input-group-box label {
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
    color: #555;
}

.input-group-box input {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
}

.input-group-box input:focus {
    border-color: #4f46e5;
    box-shadow: 0px 1px 3px 0px #4f46e51c
}

.input-group-box textarea:focus {
    border-color: #4f46e5;
    box-shadow: 0px 1px 3px 0px #4f46e51c
}

.input-group-box select:focus {
    border-color: #4f46e5;
    box-shadow: 0px 1px 3px 0px #4f46e51c
}

/* ADD BUTTON */
.addAnotherBlockDiv h4 {
    color: #4f46e5;
    cursor: pointer;
    font-size: 14px;
}

/* REMOVE BUTTON */
.remove-btn {
position: absolute;
    top: 5px;
    right: 5px;
    background: #00000061;
    color: #fff;
    border: none;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 50%;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
background: black;
}

/* SUBMIT BUTTON */
.formBtn {
    width: 250px;
    margin-top: 30px;
    padding: 12px;
    border: none;
    background: #4f46e5;
    color: #fff;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}

.productPhotosBlock {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.productPhotosBlock h3 {
    font-size: 20px;
    color: black;
}

div.main-photo-box {
    width: calc(100% - 30px);
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
}

input.product_photo_url {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
}

input.product_photo_url:focus {
border-color: #4f46e5;
box-shadow: 0px 1px 3px 0px #4f46e51c;    
}

.photoHolder {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 5px;
}

.photoHolder i {
    cursor: pointer;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: black;
    border-radius: 50px;
    padding: 5px;
}

.group-input {
    display: flex;
    gap: 10px;
    align-items: center;
}

.input-group-box textarea {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
    height: 100px;
    font-family: system-ui;
}

.input-group-box select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
}

.formBtn:hover {
    background: #4338ca;
}

.load-more-box button:hover {
background: #6c6c6c;
}

td img {
    background: #ececec;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Inter, sans-serif;
    border-radius: 15px;
}

td i.rating {
    color: orange;
}

.product-table th, .product-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-align: left;
    width: 150px;
}

.product-table th {
    background: #f7f7f7;
    font-weight: 600;
}

.load-more-box {
text-align: center;
    margin: 20px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.load-more-box button {
    padding: 10px 20px;
    border: none;
    background: #111;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}


button.statusBtn {
    height: 30px;
    width: auto;
    padding: 0 15px;
    border-radius: 10px;
    font-size: 13px;
    border: 0;
    background: orange;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}

span.searchBox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    background: #fff;
    border-radius: 10px;
    border: 0;
    box-shadow: 0px 0px 6px 2px #80808030;
    height: 30px;
    width: 200px;
}

span.searchBox i {
    font-size: 13px;
    color: #717171;
    display: flex
;
}

span.searchBox input {
    border: 0;
    height: 100%;
    width: 100%;
}

span.searchBox input:focus {
    border: 0;
    outline: 0;
}

button.statusBtn.verified {
background: #00b800;    
}

button.statusBtn.member {
background: #00b800;    
}

.table-board {
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: max-content;
    max-height: calc(100% - 100px);
    margin-top: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 1px 1px 10px 1px #80808021;
    overflow-x: scroll;
    padding: 10px;
}

/* apply to even table rows */
tr:nth-child(even) {
    background: #f9f6ff;
}

/* optionally, odd rows get white or default */
tr:nth-child(odd) {
    background: #ffffff;
}



/* MOBILE  */

@media (max-width: 768px) {
.header {
    padding: 25px 10px;
}

.table-board {
    width: calc(100% - 20px);
}

.form {
    width: calc(100% - 20px);
    padding: 20px 10px;
}
}