/**
 * Komzinc Frontend Styles
 *
 * @package Komzinc
 */

.komzinc-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Welcome Section */
.komzinc-welcome {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.komzinc-welcome h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
}

.komzinc-welcome p {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

/* Stats Overview */
.komzinc-stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.komzinc-stat-box {
    background: #fff;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.komzinc-stat-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.komzinc-stat-box .stat-icon {
    flex-shrink: 0;
}

.komzinc-stat-box .stat-icon .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: #667eea;
}

.komzinc-stat-box .stat-content {
    flex: 1;
}

.komzinc-stat-box .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    line-height: 1;
    margin-bottom: 8px;
}

.komzinc-stat-box .stat-label {
    font-size: 14px;
    color: #718096;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.komzinc-stat-box .stat-warning {
    margin-top: 8px;
    font-size: 13px;
    color: #d97706;
    font-weight: 500;
}

/* Section */
.komzinc-section {
    background: #fff;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.komzinc-section h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

/* Empty Message */
.komzinc-empty-message {
    text-align: center;
    padding: 40px 20px;
    color: #718096;
}

.komzinc-empty-message p {
    margin: 0;
    font-size: 16px;
}

/* Table */
.komzinc-table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.komzinc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.komzinc-table thead {
    background: #f7fafc;
}

.komzinc-table th {
    text-align: left;
    padding: 12px 15px;
    font-weight: 600;
    color: #4a5568;
    border-bottom: 2px solid #e2e8f0;
    white-space: nowrap;
}

.komzinc-table td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    color: #2d3748;
}

.komzinc-table tbody tr:hover {
    background: #f7fafc;
}

.komzinc-table tbody tr:last-child td {
    border-bottom: none;
}

.komzinc-table td strong {
    color: #1a202c;
    font-weight: 600;
}

/* Badges */
.komzinc-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.komzinc-badge.badge-success {
    background: #d4edda;
    color: #155724;
}

.komzinc-badge.badge-default {
    background: #e2e8f0;
    color: #4a5568;
}

.komzinc-badge.status-active {
    background: #d4edda;
    color: #155724;
}

.komzinc-badge.status-expiring {
    background: #fff3cd;
    color: #856404;
}

.komzinc-badge.status-expired {
    background: #f8d7da;
    color: #721c24;
}

.komzinc-badge.status-suspended {
    background: #e2e3e5;
    color: #383d41;
}

.komzinc-badge.status-unknown {
    background: #e2e8f0;
    color: #4a5568;
}

/* Payment Status Badges */
.komzinc-badge.payment-status-paid {
    background: #d4edda;
    color: #155724;
}

.komzinc-badge.payment-status-unpaid {
    background: #f8d7da;
    color: #721c24;
}

.komzinc-badge.payment-status-partial {
    background: #fff3cd;
    color: #856404;
}

.komzinc-badge.payment-status-overdue {
    background: #f8d7da;
    color: #721c24;
    font-weight: 700;
}

.komzinc-badge.payment-status-cancelled {
    background: #e2e3e5;
    color: #383d41;
}

/* Expiry Warning */
.expiry-warning {
    color: #d97706;
    font-weight: 500;
}

/* Support Section */
.komzinc-support {
    text-align: center;
    padding: 20px;
    background: #f7fafc;
    border-radius: 8px;
    margin-top: 30px;
}

.komzinc-support p {
    margin: 0;
    color: #4a5568;
    font-size: 14px;
}

.komzinc-support a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.komzinc-support a:hover {
    text-decoration: underline;
}

/* Notice */
.komzinc-notice {
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 14px;
}

.komzinc-notice-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Buttons */
.komzinc-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.komzinc-button:hover {
    background: #5568d3;
    color: #fff;
    text-decoration: none;
}

.komzinc-button-small {
    padding: 6px 12px;
    font-size: 13px;
}

.komzinc-button .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 1;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .komzinc-dashboard {
        padding: 15px;
    }

    .komzinc-welcome {
        padding: 30px 20px;
    }

    .komzinc-welcome h2 {
        font-size: 24px;
    }

    .komzinc-stats-overview {
        grid-template-columns: 1fr;
    }

    .komzinc-section {
        padding: 20px 15px;
    }

    .komzinc-table thead {
        display: none;
    }

    .komzinc-table,
    .komzinc-table tbody,
    .komzinc-table tr,
    .komzinc-table td {
        display: block;
        width: 100%;
    }

    .komzinc-table tr {
        margin-bottom: 20px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        overflow: hidden;
    }

    .komzinc-table td {
        padding: 12px 15px;
        text-align: right;
        position: relative;
        padding-left: 50%;
        border-bottom: 1px solid #e2e8f0;
    }

    .komzinc-table td:last-child {
        border-bottom: none;
    }

    .komzinc-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        font-weight: 600;
        color: #4a5568;
        text-align: left;
    }

    .komzinc-table td strong {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .komzinc-stat-box {
        flex-direction: column;
        text-align: center;
    }

    .komzinc-stat-box .stat-icon {
        margin: 0 auto;
    }
}

/* ========================================
   Contact Form 7 Styles
   ======================================== */

.wpcf7 {
    max-width: 800px;
}

.wpcf7-form {
    padding: 0;
}

.wpcf7-form p {
    margin-bottom: 20px;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2d3748;
    font-size: 14px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form input[type="number"]:focus,
.wpcf7-form input[type="date"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    outline: none;
    border-color: #1761B0;
    box-shadow: 0 0 0 3px rgba(23, 97, 176, 0.1);
}

.wpcf7-form textarea {
    min-height: 150px;
    resize: vertical;
}

.wpcf7-form input[type="submit"] {
    background: #1761B0;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
}

.wpcf7-form input[type="submit"]:hover {
    background: #0D3580;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(23, 97, 176, 0.3);
}

/* Validation Messages */
.wpcf7-not-valid-tip {
    color: #D2292D;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.wpcf7-form .wpcf7-not-valid {
    border-color: #D2292D;
}

.wpcf7-response-output {
    border: 1px solid;
    padding: 15px;
    margin: 20px 0;
    border-radius: 6px;
    font-size: 14px;
}

.wpcf7-mail-sent-ok {
    border-color: #c3e6cb;
    background: #d4edda;
    color: #155724;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors,
.wpcf7-spam-blocked {
    border-color: #f5c6cb;
    background: #f8d7da;
    color: #721c24;
}

.wpcf7-spinner {
    margin-left: 10px;
}

/* ========================================
   Login Form Styles
   ======================================== */

.komzinc-login-wrapper {
    max-width: 60%;
    margin: 60px auto;
    padding: 20px;
}

.komzinc-login-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.komzinc-login-header {
    background: linear-gradient(135deg, #1761B0 0%, #0D3580 100%);
    color: #fff;
    padding: 40px 30px;
    text-align: center;
}

.komzinc-login-header .login-logo {
    margin-bottom: 20px;
}

.komzinc-login-header .login-logo img {
    max-height: 60px;
    width: auto;
}

.komzinc-login-header h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.login-subtitle {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
    color: #fff;
}

.komzinc-login-box {
    padding: 40px 30px;
}

.komzinc-form-group {
    margin-bottom: 20px;
}

.komzinc-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2d3748;
    font-size: 14px;
}

.komzinc-form-group .required {
    color: #D2292D;
}

.komzinc-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.komzinc-input:focus {
    outline: none;
    border-color: #1761B0;
    box-shadow: 0 0 0 3px rgba(23, 97, 176, 0.1);
}

.komzinc-remember {
    margin-bottom: 25px;
}

.komzinc-remember label {
    display: flex;
    align-items: center;
    font-weight: 400;
    cursor: pointer;
}

.komzinc-remember input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

.komzinc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.komzinc-button-primary {
    background: #1761B0;
    color: #fff;
    width: 100%;
}

.komzinc-button-primary:hover {
    background: #0D3580;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(23, 97, 176, 0.3);
}

.komzinc-button .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.komzinc-login-links {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.komzinc-link {
    color: #1761B0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.komzinc-link:hover {
    color: #0D3580;
    text-decoration: underline;
}

.komzinc-login-footer {
    background: #f7fafc;
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.komzinc-login-footer p {
    margin: 0;
    font-size: 14px;
    color: #4a5568;
}

.komzinc-login-footer a {
    color: #1761B0;
    text-decoration: none;
    font-weight: 500;
}

.komzinc-login-footer a:hover {
    color: #0D3580;
    text-decoration: underline;
}

/* Notice Messages */
.komzinc-notice {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.komzinc-notice-error {
    background: #fee;
    border: 1px solid #fcc;
    color: #c00;
}

.komzinc-notice-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.komzinc-notice strong {
    font-weight: 600;
}

/* Responsive Login Form */
@media screen and (max-width: 480px) {
    .komzinc-login-wrapper {
        margin: 20px auto;
        padding: 10px;
        max-width: 450px;
    }

    .komzinc-login-header {
        padding: 30px 20px;
    }

    .komzinc-login-box {
        padding: 30px 20px;
    }

    .komzinc-login-footer {
        padding: 15px 20px;
    }
}

/* ========================================
   Dashboard with Sidebar Layout
   ======================================== */

.komzinc-dashboard-layout {
    display: flex;
    min-height: 100vh;
    background: #f7fafc;
}

/* Sidebar */
.komzinc-sidebar {
    width: 260px;
    background: #2d3748;
    color: #fff;
    padding: 20px 0;
    flex-shrink: 0;
}

.komzinc-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.komzinc-sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #cbd5e0;
    text-decoration: none;
    border-radius: 0px;
    transition: all 0.2s ease;
    position: relative;
}

.komzinc-sidebar-item .dashicons {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.komzinc-sidebar-item .item-label {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
}

.komzinc-sidebar-item .item-count {
    background: #4a5568;
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.komzinc-sidebar-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.komzinc-sidebar-item.active {
    background: #1761B0;
    color: #fff;
}

.komzinc-sidebar-item.active .item-count {
    background: rgba(255, 255, 255, 0.2);
}

.komzinc-sidebar-spacer {
    flex: 1;
    min-height: 20px;
}

/* Main Content */
.komzinc-main-content {
    flex: 1;
    overflow-x: hidden;
}

/* Welcome Bar */
.komzinc-welcome-bar {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 30px 40px;
}

.welcome-info h2 {
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 600;
    color: #1a202c;
}

.welcome-info p {
    margin: 0;
    color: #718096;
    font-size: 14px;
}

/* Content Area */
.komzinc-content-area {
    padding: 40px;
}

/* Dashboard Section */
.komzinc-section h2 {
    margin: 0 0 25px 0;
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
}

/* Stats Grid */
.komzinc-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.komzinc-stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.komzinc-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.komzinc-stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1761B0 0%, #0D3580 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.komzinc-stat-card .stat-icon .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: #fff;
}

.komzinc-stat-card .stat-content h3 {
    margin: 0 0 5px 0;
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    line-height: 1;
}

.komzinc-stat-card .stat-content p {
    margin: 0;
    font-size: 14px;
    color: #718096;
    font-weight: 500;
}

/* Quick Overview */
.komzinc-quick-overview {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.komzinc-quick-overview h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
}

.komzinc-quick-overview p {
    margin: 0;
    color: #718096;
    line-height: 1.6;
}

/* Table Wrapper */
.komzinc-table-wrapper {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

/* Empty State */
.komzinc-empty-state {
    background: #fff;
    border-radius: 12px;
    padding: 60px 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.komzinc-empty-state .dashicons {
    font-size: 64px;
    width: 64px;
    height: 64px;
    color: #cbd5e0;
    margin-bottom: 20px;
}

.komzinc-empty-state p {
    margin: 0;
    color: #718096;
    font-size: 16px;
}

/* Detailed Empty State */
.komzinc-empty-state-detailed {
    background: #fff;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
}

.komzinc-empty-state-detailed .empty-state-icon {
    margin-bottom: 30px;
}

.komzinc-empty-state-detailed .empty-state-icon .dashicons {
    font-size: 80px;
    width: 80px;
    height: 80px;
    color: #1761B0;
    opacity: 0.3;
}

.komzinc-empty-state-detailed h3 {
    margin: 0 0 20px 0;
    font-size: 28px;
    font-weight: 600;
    color: #1a202c;
}

.komzinc-empty-state-detailed .empty-state-description {
    margin: 0 0 30px 0;
    color: #718096;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.komzinc-empty-state-detailed .empty-state-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px auto 40px;
    max-width: 500px;
}

.komzinc-empty-state-detailed .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f7fafc;
    border-radius: 8px;
    text-align: left;
}

.komzinc-empty-state-detailed .feature-item .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: #48bb78;
    flex-shrink: 0;
}

.komzinc-empty-state-detailed .feature-item span:last-child {
    color: #2d3748;
    font-size: 14px;
    font-weight: 500;
}

.komzinc-empty-state-detailed .komzinc-button-primary {
    padding: 14px 32px;
    font-size: 16px;
    display: inline-flex;
}

/* Badge Variants */
.komzinc-badge-active {
    background: #d4edda;
    color: #155724;
}

.komzinc-badge-expiring {
    background: #fff3cd;
    color: #856404;
}

.komzinc-badge-expired {
    background: #f8d7da;
    color: #721c24;
}

.komzinc-badge-suspended {
    background: #e2e3e5;
    color: #383d41;
}

.komzinc-badge-paid {
    background: #d4edda;
    color: #155724;
}

.komzinc-badge-unpaid {
    background: #f8d7da;
    color: #721c24;
}

.komzinc-badge-partial {
    background: #fff3cd;
    color: #856404;
}

.komzinc-badge-overdue {
    background: #f8d7da;
    color: #721c24;
    font-weight: 700;
}

.komzinc-badge-cancelled {
    background: #e2e3e5;
    color: #383d41;
}

/* Responsive Dashboard */
@media screen and (max-width: 1024px) {
    .komzinc-dashboard-layout {
        flex-direction: column;
    }

    .komzinc-sidebar {
        width: 100%;
        padding: 15px 0;
    }

    .komzinc-sidebar-nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        padding: 0 15px;
    }

    .komzinc-sidebar-item {
        white-space: nowrap;
        min-width: auto;
    }

    .komzinc-sidebar-item .item-label {
        display: none;
    }

    .komzinc-sidebar-spacer {
        display: none;
    }

    .komzinc-welcome-bar {
        padding: 25px 30px;
    }

    .komzinc-content-area {
        padding: 30px;
    }
}

@media screen and (max-width: 768px) {
    .komzinc-login-wrapper {
        margin: 20px auto;
        padding: 10px;
        max-width: 450px;
    }

    .komzinc-welcome-bar {
        padding: 20px;
    }

    .welcome-info h2 {
        font-size: 24px;
    }

    .komzinc-content-area {
        padding: 20px;
    }

    .komzinc-stats-grid {
        grid-template-columns: 1fr;
    }

    .komzinc-section h2 {
        font-size: 20px;
    }

    .komzinc-empty-state-detailed {
        padding: 40px 20px;
    }

    .komzinc-empty-state-detailed h3 {
        font-size: 24px;
    }

    .komzinc-empty-state-detailed .empty-state-features {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .komzinc-sidebar-nav {
        padding: 0 10px;
    }

    .komzinc-sidebar-item {
        padding: 10px;
    }

    .komzinc-welcome-bar {
        padding: 15px;
    }

    .welcome-info h2 {
        font-size: 20px;
    }

    .welcome-info p {
        font-size: 13px;
    }

    .komzinc-content-area {
        padding: 15px;
    }

    .komzinc-stat-card {
        padding: 20px;
    }

    .komzinc-stat-card .stat-icon {
        width: 50px;
        height: 50px;
    }

    .komzinc-stat-card .stat-icon .dashicons {
        font-size: 28px;
        width: 28px;
        height: 28px;
    }

    .komzinc-stat-card .stat-content h3 {
        font-size: 28px;
    }
}
