/* general container styling */
.search-container {
    margin: 30px auto;
    padding: 20px;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* input group styling */
.input-group {
    display: flex;
    gap: 10px;
}

/* input field styling */
.domain-input {
    flex: 1;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

/* button styling */
.check-domain {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.check-domain:hover {
    background-color: #0056b3;
}

/* validation message styling */
.validation-msg {
    font-size: 14px;
    display: block;
}

/* result box */
#leaks-checker-result {
    font-size: 18px;
    padding: 10px;
    background: #000;
    border-radius: 5px;
    display: none;
    margin-top: 1rem;
    color: #fff;
}


.search-result-main h3 {
font-size: 30px;

}

 .search-result-main  ul  {
 margin : 0;
 padding: 0;
 list-style-type: none;

}

.search-result-main ul li  {
 text-align: left;
 position: relative;
 padding-left : 15px
}

.search-result-main ul li:before {
 position: absolute;
 content:"";
 background: #e55829;
 width : 10px;
 height: 10px;
 border-radius: 100%;
 left : 0;
 top: 5px;


}

#leaks-checker-form img.loader {
    width: 15px;
    height: 15px;
}