/* Scoped Form Container Styles */
        #darman-data-form {
            background-color: #fff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            max-width: 500px;
            width: 100%;
            box-sizing: border-box;
            margin: 20px auto; /* Center the form on the page */
        }

        /* Scoped Form Header */
        #darman-data-form h2 {
            font-size: 22px;
            text-align: center;
            color: #333;
            margin-bottom: 20px;
        }

        /* Scoped Form Labels */
        #darman-data-form label {
            font-size: 16px;
            color: #333;
            margin-bottom: 8px;
            display: block;
        }

        /* Scoped Input Fields */
        #darman-data-form input[type="text"] {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 16px;
            box-sizing: border-box;
            background-color: #f9f9f9;
            transition: border-color 0.3s ease, background-color 0.3s ease;
        }

        #darman-data-form input[type="text"]:focus {
            border-color: #4caf50;
            background-color: #e9f7e5;
            outline: none;
        }

        /* Scoped Submit Button */
        #darman-data-form input[type="submit"] {
            background-color: #4caf50;
            color: #fff;
            border: none;
            padding: 14px;
            width: 100%;
            font-size: 16px;
            cursor: pointer;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }

        #darman-data-form input[type="submit"]:hover {
            background-color: #45a049;
        }

        /* Download PDF Button Styles */
        #download-pdf-form {
            margin-top: 20px;
            text-align: center;
        }

        #download-pdf-btn {
            background-color:rgb(33, 122, 218);
            color: white;
            padding: 12px 20px;
            font-size: 16px;
            cursor: pointer;
            border: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        #download-pdf-btn:hover {
            background-color:rgba(0, 87, 179, 0.9);
        }

        /* Table Styles */
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        table th, table td {
            padding: 12px;
            text-align: left;
            border: 1px solid #ddd;
        }
        table th {
            background-color: #f4f4f4;
        }

        /* Scrollable table on smaller screens */
        table {
            display: block;
            overflow-x: auto;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
        }

        /* Custom scrollbar styles for better visibility */
        table::-webkit-scrollbar {
            height: 10px; /* Height of horizontal scrollbar */
            background-color: #f1f1f1;
        }

        table::-webkit-scrollbar-thumb {
            background-color:rgb(76, 116, 175); /* Green thumb for the scrollbar */
            border-radius: 5px;
        }

        table::-webkit-scrollbar-thumb:hover {
            background-color:rgb(76, 116, 175); /* Darker green on hover */
        }

        /* Adjust table for tablets and mobile (max-width: 1024px) */
        @media (max-width: 1024px) {
            table th, table td {
                font-size: 14px;
                padding: 10px;
            }
        }

        /* Adjust table for mobile devices (max-width: 600px) */
        @media (max-width: 600px) {
            table th, table td {
                font-size: 12px;
                padding: 8px;
            }
        }