
/*==================================================
SENARAI USAHAWAN UBZM
==================================================*/

.top-bar{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:25px;
    flex-wrap:wrap;

}

.top-bar form{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    align-items:center;
    flex:1;

}

/*=====================================
TABLE UBZM
=====================================*/

table{
    width:100%;
	min-width:1100px;
    margin-top:20px;
    border-collapse:collapse;
    border-spacing:0;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

thead th{
    background:linear-gradient(135deg,#1d4d8f,#2d67b2);
    color:#fff;
    padding:16px 14px;
    font-size:15px;
    font-weight:600;
    text-align:left;
    border:none;

}

tbody td{
    padding:16px 14px;
    vertical-align:middle;
    border-bottom:1px solid #eef2f7;
    font-size:14px;
    color:#444;

}

tbody tr:nth-child(even){
    background:#f8fbff;

}

tbody tr{
    transition:all .25s;

}

tbody tr:hover{
    background:#edf5ff;

}

        /* buttons */
.btn {
    display: inline-block;
    padding:10px 18px;
    margin-right: 5px;
    border-radius:10px;
    border: none;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    font-weight:600;
    transition:.25s;	
}
.btn-excel { background: green; }
.btn-pdf   { background: red; }
.btn-print { background: #007bff; }
.btn i { margin-right: 5px; }


/*=====================================
PAGINATION
=====================================*/

.pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
    margin:35px 0;

}

.pagination a{
    display:flex;
    justify-content:center;
    align-items:center;
    min-width:42px;
    height:42px;
    padding:0 14px;
    border-radius:10px;
    background:#fff;
    border:1px solid #dbe4ef;
    color:#1d4d8f;
    text-decoration:none;
    font-weight:600;
    transition:.25s;

}

.pagination a:hover{
    background:#edf5ff;
    border-color:#1d4d8f;
    transform:translateY(-2px);

}

.pagination a.active{
    background:#1d4d8f;
    color:#fff;
    border-color:#1d4d8f;

}

/*=====================================
SEARCH CARD
=====================================*/

.search-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    margin:35px 0;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    border:1px solid #edf2f7;

}


/*=====================================
FORM
=====================================*/

.top-bar input[type="text"],
.top-bar select{
    height:48px;
    padding:0 16px;
    border:1px solid #d6dde8;
    border-radius:10px;
    background:#fff;
    font-size:15px;
    transition:all .25s ease;
    outline:none;

}

.top-bar input[type="text"]{
    max-width:100%;
	flex:1;
	min-width:300px;

}

.top-bar input[type="text"]:focus,
.top-bar select:focus{
    border-color:#1d4d8f;
    box-shadow:0 0 0 4px rgba(29,77,143,.12);

}

.btn-search{
    height:48px;
    padding:0 24px;
    border:none;
    border-radius:10px;
    background:#1d4d8f;
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.25s;

}

.btn-search:hover{
    background:#163b70;
    transform:translateY(-2px);

}

.btn:hover{
    transform:translateY(-2px);
}

/*=====================================
NUMBER BADGE
=====================================*/

.bil{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    border-radius:50%;
    background:#e8f0fb;
    color:#1d4d8f;
    font-weight:bold;
	box-shadow:0 4px 10px rgba(29,77,143,.15);

}

.ubzm-id{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
}

.verified{
    width:20px;
    height:20px;
}

.table-wrapper{
    width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    border-radius:16px;
}

.table-divider{
    border:none;
    border-top:1px solid #edf2f7;
    margin:30px 0;

}

/*=====================================
STATISTIC CARD
=====================================*/

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin:35px 0;

}

.stat-card{
    background:#fff;
    border-radius:22px;
    padding:24px 24px;
    text-align:center;
    border:1px solid #edf2f7;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;

}

.stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.stat-icon{
    width:74px;
    height:74px;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;

}

.stat-title{
    margin-top:12px;
    font-size:16px;
    color:#666;
    font-weight:600;

}

.stat-value{
    margin-top:20px;
    font-size:44px;
    font-weight:700;
    line-height:1;
}

.stat-footer{
    margin-top:18px;
    padding-top:14px;
    border-top:1px solid #edf2f7;
    font-size:13px;
    color:#999;

}

.stat-blue .stat-icon{
    background:#edf5ff;
    color:#1d4d8f;

}

.stat-green .stat-icon{
    background:#eefaf1;
    color:#198754;

}

.stat-orange .stat-icon{
    background:#fff3e8;
    color:#fd7e14;

}

.stat-blue .stat-value{
    color:#1d4d8f;

}

.stat-green .stat-value{
    color:#198754;

}

.stat-orange .stat-value{
    color:#fd7e14;

}
/*=====================================
SEARCH HEADER
=====================================*/

.search-header{
    margin-bottom:25px;
    border-bottom:1px solid #edf2f7;
    padding-bottom:18px;

}

.search-header h2{
    margin:0;
    font-size:24px;
    color:#1d4d8f;
    font-weight:700;

}

.search-header h2 i{
    margin-right:10px;

}

.search-header p{
    margin-top:10px;
    color:#666;
    line-height:1.7;
    font-size:15px;

}

.export-group{
    display:flex;
    gap:10px;
    flex-wrap:wrap;

}

.company-name{
	font-size:15px;
    font-weight:600;
    color:#1d4d8f;
    line-height:1.5;

}

.badge-business{
    display:inline-block;
    padding:7px 12px;
    background:#edf5ff;
    color:#1d4d8f;
    border-radius:30px;
    font-size:13px;
    font-weight:600;

}

.product-name{
    color:#555;
    line-height:1.6;

}

.badge-id{
    display:inline-block;
    padding:7px 12px;
    border-radius:8px;
    background:#f3f5f8;
    color:#444;
    font-weight:700;
    letter-spacing:.5px;
	min-width:58px;
    text-align:center;

}

.col-bil{
    width:70px;
    text-align:center;
}

.badge-empty{
    color:#bbb;
    font-style:italic;

}

.badge-business{
    border:1px solid #d6e7ff;

}

.btn-map{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    border-radius:50%;
    background:#1A73E8;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.btn-map:hover{

    background:#0b57d0;
    transform:scale(1.08);
}

.badge-active{

    display:inline-block;
    padding:5px 12px;
    background:#28a745;
    color:#fff;
    border-radius:20px;
    font-size:12px;
    font-weight:bold;
}

.badge-expired{

    display:inline-block;
    padding:5px 12px;
    background:#dc3545;
    color:#fff;
    border-radius:20px;
    font-size:12px;
    font-weight:bold;
}

.tempoh-group{
    display:inline-flex;
    align-items:center;
    gap:5px;
}

.verified{
    width:18px;
    height:18px;
}

.tempoh-cell{
    text-align:center;
}

.tempoh-group{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:5px;
}

.tempoh-tahun{
    margin-top:4px;
    font-size:12px;
    color:#666;
}

.verified{
    width:18px;
    height:18px;
}