body {
    background-color: #ffffff !important;
}

  	.wrapper {
	    width: 900px;
	      margin: 0 auto;
      }

   	h1, h2, h3, h4, h5, h6, p {
	        font-family: 'Roboto', sans-serif;
		color: #111;
		line-height: 24px;
	    }

	h1 {
		font-weight: 600;
		font-size: 32px;
		padding: 20px 0;
		text-align: center;
		}

	h2 {
         	font-weight: 500;
		font-size: 24px;
		padding: 20px 0;
		text-align: center;
	}

	h3 {
		font-weight: 500;
		font-size: 16px;
	}
	p {
		font-weight: 400;
		font-size: 16px;
	}

	nav {
		width: 100%;
		height: 60px;
		background-color: #111111;
	}

	nav .wrapper {
		height: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	nav img {
		width: 60px;
	}


	nav ul {

	}

	nav ul li {
		list-style: none;
		float: left;
	}

	nav ul li a {
		font-family: 'Roboto', sans-serif;
		font-weight: 300;
		font-size: 14px;
		color: #ffffff;
		text-decoration: none;
		padding: 0 16px;
		text-transform: uppercase;
	}

	nav ul li a:hover {
		color: #31a6ff;
	}

	section {
		background-color: #fff;
		width: 94%;
		padding: 20px 3%;
	}


	/* index */

	.index-intro p {
		text-align: center;
	}

	.index-categories-list {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.index-categories-list div {
		width: 24%;
		height: 200px;
		background-color: #ccc;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	/* sign up */

	.signup-form-form {
		display: flex;
		justify-content: center;
	}

	.signup-form p {
		text-align: center;
		padding-bottom: 40px;
		color: #007ecc;
	}

	.signup-form form {
		width: 30%;
	}

	.signup-form form input {
		width: calc(100% - 16px);
		padding: 6px;
		margin-bottom: 4px;
	}
	.signup-form form button {
		display: block;
		padding: 10px 20px;
		margin: 10px auto;
		cursor: pointer;
	}

	.category-item {
	    padding: 10px;
	    border: 1px solid #ddd;
	    border-radius: 5px;
	    display: inline-block;
	    transition: background-color 0.3s, transform 0.3s;
	    cursor: pointer;
	}

	.category-item:hover {
			background-color: #d0e8ff; /* Light blue background on hover */
	    transform: scale(1.05); /* Slightly enlarge the item */
	    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a shadow effect */
	}

  .review-container {
      max-width: 1200px; /* Set a maximum width */
      margin: 20px auto; /* Center the container */
      padding: 20px;
      background-color: #ffffff;
      border: 1px solid #ddd;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      overflow-x: auto; /* Enable horizontal scrolling if needed */
  }

  .review-container::-webkit-scrollbar {
    height: 8px; /* Adjust scrollbar height */
}

.review-container::-webkit-scrollbar-thumb {
    background-color: #aaa; /* Style for scrollbar thumb */
    border-radius: 4px;
}

.review-container::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* Style for scrollbar track */
}

	/* General Table Styling */
  table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
      table-layout: auto; /* Ensure table adjusts to the container */
  }

  th, td {
      padding: 10px;
      text-align: left;
      border: 1px solid #ddd;
  }

  th {
      background-color: #f4f4f4;
  }

	tr:nth-child(even) {
	    background-color: #f9f9f9; /* Light gray for even rows */
	}

	tr:nth-child(odd) {
	    background-color: white; /* White for odd rows */
	}

	tr:hover {
	    background-color: #f1f1f1; /* Highlight row on hover */
	}

	/* Scans Page Background */
	.scans-page {
	    background-color: white;
	    color: black; /* Ensure text is readable */
	}

.center-text {
            text-align: center;
        }
.actions button {
            padding: 5px 10px;
            margin-right: 5px;
            cursor: pointer;
        }

				/* Scans Page Background */
				.scans-page {
				    background-color: white;
				    color: black; /* Ensure text is readable */
				}

				/* Filter Form Container */
				.filter-form {
				    width: 80%;
				    margin: 20px auto;
				    display: flex;
				    flex-wrap: wrap;
				    justify-content: space-between;
				    align-items: center;
				    gap: 15px;
				    background-color: #f9f9f9;
				    padding: 20px;
				    border: 1px solid #ddd;
				    border-radius: 8px;
				}

				/* Filter Labels and Inputs */
				.filter-form label {
				    font-weight: bold;
				    margin-right: 10px;
				}

				.filter-form input,
				.filter-form select {
				    padding: 8px 12px;
				    font-size: 14px;
				    border: 1px solid #ccc;
				    border-radius: 4px;
				    width: auto;
				}

				/* Filter Buttons */
				.filter-form button {
				    padding: 8px 15px;
				    font-size: 14px;
				    color: white;
				    background-color: #007bff;
				    border: none;
				    border-radius: 4px;
				    cursor: pointer;
				    transition: background-color 0.3s ease;
				}

				.filter-form button:hover {
				    background-color: #0056b3;
				}

				.filter-form a {
				    padding: 8px 15px;
				    font-size: 14px;
				    text-decoration: none;
				    color: #333;
				    background-color: #e0e0e0;
				    border: 1px solid #ccc;
				    border-radius: 4px;
				    cursor: pointer;
				    transition: background-color 0.3s ease;
				}

				/* Horizontal Alignment Styling */
				.filter-form div {
				    margin-bottom: 15px;
				}

				input, select, textarea {
				    font-family: 'Roboto', sans-serif;
				    font-size: 14px;
				    border: 1px solid #ccc;
				    border-radius: 4px;
				    padding: 10px;
				    width: 100%;
				    box-sizing: border-box;
				}

				button#submit {
				    padding: 15px;
				    font-size: 16px;
				    color: white;
				    background-color: #007bff;
				    border: none;
				    border-radius: 5px;
				    cursor: pointer;
				    transition: background-color 0.3s ease;
				}

				button#submit:hover {
				    background-color: #0056b3;
				}

				.stats-container {
				            width: 90%;
				            margin: 20px auto;
				            display: flex;
				            flex-wrap: wrap;
				            gap: 20px;
				        }
				        .stat-card {
				            background-color: #f9f9f9;
				            border: 1px solid #ddd;
				            border-radius: 8px;
				            padding: 20px;
				            width: calc(50% - 20px); /* Two per row */
				            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
				        }
				        .stat-card h3 {
				            margin-top: 0;
				        }

				        .link {
				            color: #007BFF;
				            text-decoration: none;
				        }
				        .link:hover {
				            text-decoration: underline;
				        }

                .dns-container {
                    max-width: 1200px;
                    margin: 20px auto;
                    padding: 20px;
                    background-color: #ffffff;
                    border: 1px solid #ddd;
                    border-radius: 8px;
                    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
                }

                .dns-form {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    margin-bottom: 20px;
                }

                .dns-form input[type="text"] {
                    flex: 2;
                    padding: 10px;
                    margin-right: 10px;
                    border: 1px solid #ddd;
                    border-radius: 4px;
                }

                .dns-form button {
                    padding: 10px 20px;
                    background-color: #f0f0f0;
                    color: #333;
                    border: 1px solid #ddd;
                    border-radius: 4px;
                    cursor: pointer;
                }

                .dns-form button:hover {
                    background-color: #333;
                    color: #fff;
                }

                .stats-container {
                    margin-bottom: 20px;
                }

                .toggle-btn {
                    margin-bottom: 20px;
                    padding: 10px 20px;
                    background-color: #007bff;
                    color: white;
                    border: none;
                    border-radius: 4px;
                    cursor: pointer;
                }

                .toggle-btn:hover {
                    background-color: #0056b3;
                }

                .blocked {
                    color: red;
                    font-weight: bold;
                }

                table tbody tr:hover {
                    background-color: #f9f9f9; /* Add a hover effect for better UX */
                  }
