/* ===========================
   CUSTOMERS PAGE
=========================== */

.customer-cards{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

margin-bottom:25px;

}

.customer-card{

background:#111827;

border:1px solid #1f2937;

border-radius:20px;

padding:22px;

transition:.25s;

}

.customer-card:hover{

transform:translateY(-3px);

border-color:#7c3aed;

box-shadow:0 0 25px rgba(124,58,237,.18);

}

.card-title{

font-size:14px;

color:#94a3b8;

margin-bottom:12px;

}

.card-value{

font-size:34px;

font-weight:800;

color:#ffffff;

}

.green{

color:#22c55e;

}

.red{

color:#ef4444;

}

.blue{

color:#3b82f6;

}

/* ===========================
SEARCH
=========================== */

.customer-search{

margin-bottom:22px;

}

.customer-search input{

width:100%;

padding:16px 18px;

border-radius:16px;

background:#111827;

border:1px solid #1f2937;

color:#fff;

font-size:15px;

outline:none;

transition:.25s;

}

.customer-search input:focus{

border-color:#7c3aed;

box-shadow:0 0 15px rgba(124,58,237,.18);

}

.customer-search input::placeholder{

color:#6b7280;

}

/* ===========================
STATUS
=========================== */

.customer-status{

display:inline-flex;

align-items:center;

justify-content:center;

padding:8px 16px;

border-radius:30px;

font-size:12px;

font-weight:700;

min-width:90px;

}

.customer-status.active{

background:#166534;

color:#dcfce7;

}

.customer-status.blocked{

background:#7f1d1d;

color:#fecaca;

}

/* ===========================
BUTTON
=========================== */

.view-btn{

background:#2563eb;

border:none;

color:white;

padding:10px 16px;

border-radius:10px;

cursor:pointer;

font-weight:700;

transition:.2s;

}

.view-btn:hover{

transform:scale(1.05);

opacity:.9;

}

/* ===========================
EMPTY
=========================== */

.empty-row{

text-align:center;

padding:50px !important;

color:#94a3b8;

font-size:15px;

}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:1300px){

.customer-cards{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:700px){

.customer-cards{

grid-template-columns:1fr;

}

.card-value{

font-size:28px;

}

.customer-search input{

font-size:14px;

padding:14px;

}

}
/*==========================================
CUSTOMER TOOLBAR
==========================================*/

.customer-toolbar{

display:flex;

align-items:center;

justify-content:space-between;

gap:15px;

margin:20px 0;

flex-wrap:wrap;

}

.customer-toolbar input{

flex:1;

min-width:260px;

height:45px;

padding:0 15px;

border:1px solid #2f3548;

border-radius:10px;

background:#1d2233;

color:#fff;

font-size:14px;

outline:none;

}

.customer-toolbar input:focus{

border-color:#6c63ff;

}

.customer-toolbar select{

height:45px;

padding:0 15px;

border-radius:10px;

border:1px solid #2f3548;

background:#1d2233;

color:#fff;

font-size:14px;

cursor:pointer;

min-width:180px;

}

.customer-toolbar select:focus{

border-color:#6c63ff;

}

/*==========================================
PAGINATION
==========================================*/

.pagination-bar{

display:flex;

justify-content:space-between;

align-items:center;

margin-top:20px;

padding:15px 0;

flex-wrap:wrap;

gap:15px;

}

#paginationInfo{

font-size:14px;

font-weight:600;

color:#cfcfcf;

}

.pagination-buttons{

display:flex;

align-items:center;

gap:8px;

}

.pagination-buttons button{

width:42px;

height:42px;

border:none;

border-radius:10px;

background:#6c63ff;

color:#fff;

font-size:18px;

cursor:pointer;

transition:.2s;

}

.pagination-buttons button:hover{

transform:translateY(-2px);

background:#574bdb;

}

#pageNumbers{

min-width:90px;

text-align:center;

font-weight:700;

font-size:15px;

color:#fff;

}
@media(max-width:768px){

.customer-toolbar{

flex-direction:column;

align-items:stretch;

}

.customer-toolbar input{

width:100%;

}

.customer-toolbar select{

width:100%;

}

.pagination-bar{

flex-direction:column;

align-items:center;

}

}