.elementor-widget-section .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-section .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}/* Start custom CSS for html, class: .elementor-element-5048096 */.smart-mikrotik-tool-container { /* Ganti dari .smart-mikrotik-generator jika ingin style terpisah */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 850px; /* Atau sesuaikan */
    margin: 30px auto;
}

.tool-header { /* Mirip .generator-header */
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
}
.tool-header h1 {
    font-size: 2.2em;
    color: #0d6efd; /* Warna bisa disesuaikan per tool jika mau */
    margin-bottom: 10px;
}
.tool-header p {
    font-size: 1.1em;
    color: #6c757d;
}

.tool-form .config-section { /* Mirip .config-section */
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
}
.tool-form .config-section h2 {
    font-size: 1.6em;
    color: #495057;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f3f5;
}

/* Input fields styling bisa reuse dari .smart-mikrotik-generator */
.tool-form .form-row-align-start {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end; /* Sejajarkan item di bawah (label di atas, input di bawah) */
    margin-bottom: 15px;
}
.tool-form .form-group {
    flex: 1 1 auto; /* Biarkan flex-grow dan flex-shrink */
    margin-bottom: 15px;
}
.tool-form input[type="text"],
.tool-form input[type="number"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.tool-form input[type="text"]:focus,
.tool-form input[type="number"]:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    outline: none;
}
.tool-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95em;
    color: #495057;
}

/* Tombol bisa reuse style dari .button dan .action-button */
.tool-form .form-actions-footer {
    display: flex;
    justify-content: center; /* Tombol di tengah */
    margin-top: 20px; /* Sedikit lebih dekat untuk tombol hitung */
    /* padding-top: 20px; */
    /* border-top: 1px solid #dee2e6; */ /* Tidak perlu border untuk tombol hitung ini */
}
.button.action-button { /* Pastikan style ini ada dari CSS sebelumnya */
    background-color: #0d6efd; 
    color: white;
    padding: 12px 22px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.05em;
    font-weight: 600;
}


/* Styling untuk area hasil kalkulasi */
#subnetResultsSection {
    /* Awalnya disembunyikan, akan ditampilkan oleh JavaScript */
}
.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Kolom responsif */
    gap: 15px;
    margin-top: 10px;
}
.result-item {
    background-color: #f8f9fa; /* Latar belakang item hasil */
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}
.result-label {
    display: block;
    font-weight: bold;
    color: #495057;
    margin-bottom: 5px;
    font-size: 0.9em;
}
.result-value {
    display: block;
    color: #0d6efd; /* Warna biru untuk nilai hasil */
    font-size: 1.1em;
    word-wrap: break-word; /* Agar teks panjang tidak merusak layout */
}
.result-value-small { /* Untuk teks yang mungkin panjang seperti biner */
    font-size: 0.9em;
    font-family: 'Courier New', Courier, monospace;
}/* End custom CSS */