<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General HTML Styles */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
    .dropdown-submenu &gt; .dropdown-menu {
        position: absolute;
        left: 100%; /* Tetap di sebelah kanan */
        top: 0;
    }
}

/* Saat layar lebih kecil dari 768px (mobile), ubah lebar menjadi 100% */
@media (max-width: 768px) {
    .tool-item {
        flex-direction: column;
        text-align: center;
    }

    .tool-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .tool-form {
        width: 100% !important;
    }

    .form-select {
        width: 100% !important;
    }

    .dropdown-submenu &gt; .dropdown-menu {
        position: static !important; /* Ubah posisi agar tetap dalam flow dokumen */
        display: none; /* Sembunyikan secara default */
        width: 100%; /* Buat submenu melebar */
    }

    .dropdown-submenu .dropdown-menu.show {
        display: block !important; /* Munculkan submenu saat aktif */
    }
}

/* Header */
header {
    height: 60px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #161616;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

a {
    text-decoration: none;
}

h1 {
    font-weight: bold;
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0px;
}

h2 {
    font-family: "Consolas", "Arial", sans-serif;
    font-weight: bold;
    font-size: 2rem;
    color: #2cff0f;
    text-align: center;
}

h3 {
    font-weight: bold;
    font-size: 2rem;
    color: #ffffff;
    text-align: left;
    margin-bottom: 0px;
}

h4 {
    font-family: "Consolas", "Arial", sans-serif;
    font-size: 1.2rem;
    color: #fac517;
}

/* Body Styling */
body {
    padding-top: 70px;
    margin-bottom: 60px;
    background-color: #0d0d0d;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.card {
    background-color: #161616 !important; /* Force dark background */
    color: #ffffff !important; /* Force light text */
    border: none; /* Remove Bootstrap's borders */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); /* Subtle shadow for depth */
}

    .card:hover {
        background-color: #222222 !important; /* Slightly lighter on hover */
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.6); /* Deeper hover shadow */
    }

/* Container Styling */
.container {
    max-width: 95%;
    margin: auto;
}

/* Tools Grid Layout */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

/* Tool Category */
.tool-category {
    font-family: "Consolas", "Arial", sans-serif;
    font-size: 1.5rem;
    color: #fac517;
}

/* Tool Item (Card) */
.tool-item {
    background-color: #161616; /* Dark background for the card */
    color: #ffffff; /* Light text for contrast */
    border-radius: 12px; /* Smooth corners */
    padding: 20px; /* Inner padding */
    display: flex; /* Horizontal layout for icon and text */
    align-items: center; /* Vertically center content */
    justify-content: flex-start; /* Pastikan ikon tetap di kiri */
    gap: 16px; /* Space between icon and text */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); /* Subtle shadow */
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

    .tool-item:hover {
        background-color: #222222; /* Slightly lighter shade for hover */
        transform: translateY(-5px); /* Hover effect to lift card */
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.6); /* Enhanced shadow on hover */
    }

/* Icon inside tool item */
.tool-icon {
    width: 50px; /* Icon container size */
    height: 50px;
    background-color: #258cfb; /* Blue background for the icon */
    color: #ffffff; /* White icon color */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px; /* Rounded corners */
    font-size: 24px; /* Size of the icon */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); /* Efek shadow tipis awal */
    transition: box-shadow 0.3s ease-in-out; /* Transisi untuk efek hover */
}

    .tool-icon:hover {
        /* Efek border neon saat hover */
        box-shadow: 0 0 5px #258cfb, /* Warna neon tipis (menggunakan warna background) */
        0 0 15px #258cfb, /* Warna neon sedang */
        0 0 30px #258cfb, /* Warna neon tebal */
        0 0 5px #258cfb inset; /* Efek dalam (opsional) */
        /* Kamu bisa mengubah warna latar belakang atau ikon saat hover jika diinginkan */
        /* background-color: #29abe2; */
        /* color: #e0f7fa; */
    }

/* Content inside tool item */
.tool-content {
    display: flex;
    flex-direction: column; /* Stack title and description */
    justify-content: center;
    flex-grow: 1; /* Memastikan teks mengisi ruang yang tersedia */
    display: flex;
}

.tool-title {
    font-weight: bold;
    font-size: 20px; /* Title size */
    margin-bottom: 4px; /* Space below title */
    text-decoration: none;
    color: #ffffff; /* White text for title */
}

.tool-description {
    font-size: 16px; /* Description text size */
    color: #bbbbbb; /* Light gray text for description */
    margin: 0;
}

/* Form Styling */
.tool-form {
    font-family: "Arial", "Consolas", sans-serif;
    background-color: #121212;
    color: #ffffff;
    padding: 10px;
    border-radius: 5px;
}

    .tool-form h1, .tool-form h2 {
        color: #ffffff;
    }

    .tool-form label {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .tool-form input[type="text"],
    .tool-form input[type="number"],
    .tool-form textarea {
        font-family: "Consolas", "Arial", sans-serif;
        font-size: 20px;
        background-color: #222222 !important;
        color: #ffffff !important;
        border: 1px solid #444444;
        padding: 10px;
        border-radius: 5px;
        appearance: none;
    }

    /* Buttons */
    .tool-form button {
        font-family: "Arial", "Consolas", sans-serif;
        color: #ffffff;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 20px;
        min-width: 120px;
        transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }

        .tool-form button:hover {
            box-shadow: 0px 4px 8px rgba(37, 140, 251, 0.5);
        }

/* Dark Mode Toggle */
.toggle-container {
    display: flex;
    justify-content: end;
    margin-bottom: 10px;
}

.toggle-dark-mode {
    background: #333;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

    .toggle-dark-mode:hover {
        background: #555;
    }

.modal p {
    color: black;
    font-weight: 500;
}

.btn-primary {
    background-color: #1262a6;
}

.btn-secondary {
    background-color: #258cfb;
}

.btn-danger {
    background-color: #FF5E5B;
}

a:hover {
    color: white;
}
</pre></body></html>