::-webkit-scrollbar {
    width: 2px;
    height: 20px;
    background-color: none;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: #04ff00;
}

/* Handle on scrollbar */
::-webkit-scrollbar-thumb {
    background-color: #ff0000;
    border-radius: 5px;
}


/* Handle when it is dragged */
::-webkit-scrollbar-thumb:active {
    background-color: #ff00ea;
}
body {
    background-image: url(shodan/p.jpg);
    background-color: #000000;
    background-repeat: no-repeat;
    background-size: cover;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    margin: 0;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(rgba(0, 0, 0, 0) 90%, #003305);
    animation: matrix-fall 8s linear infinite;
    z-index: -1;
}

@keyframes matrix-fall {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

* {
    box-sizing: border-box;
}

.title,
.subtitle {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
    text-align: center;
}

.title {
    font-size: 4em;
    margin-top: 50px;
}

.subtitle {
    font-size: 1.5em;
    margin-top: 5px;
    margin-bottom: 50px;
}

.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

select,
input {
    padding: 10px;
    font-size: 1.3em;
    border: none;
    height: 50px;
    border-radius: 5px 0 0 5px;
    background-color: #5f5f5f52;
    color: rgb(255, 255, 255);
}

select:focus,
input:focus {
    outline: none;
    border: 1px solid white;
}

select option {
    background-color: #00000052;
    color: rgb(255, 255, 255);
}

input {
    border-radius: 0 5px 5px 0;
    width: 100%;
    max-width: 260px; /* Adjust the max-width as needed */
}

button {
    width: 100%;
    height: 50px;
    padding: 10px;
    font-size: 1em;
    background-color: #5f5f5f52;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #4c4c4c;
    box-sizing: border-box;
    transition: background-color 0.3s;
    margin-bottom: 8px;
    overflow: hidden;
}

button:hover {
    background-color: #1a1a1a31;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 30px;
}

.column {
    flex: 1;
    margin: 10px;
    padding: 20px;
}

.dork-list {
    text-align: left;
    margin: 10px;
}

.footer {
    text-align: center;
    padding: 5px 0;
    background-color: #000000;
    color: #fff;
    font-size: 1.2em;
    overflow: hidden;
}

.footer {
    text-align: center;
    padding: 20px 0;
    font-size: 1.2em;
    color: #00ff00;
}

.footer p {
    margin: 0;
}

.social-icons {
    margin-top: 5px;
    margin-bottom: 5px;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
}

.social-icons i {
    font-size: 20px;
    color: #fff;
    transition: color 0.3s;
}

.social-icons a:hover i {
    color: #00ff00;
}
