.custom-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.custom-label {
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
    width: 100%;
}

.custom-input {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 1em;
}

.custom-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 20px;
}

.custom-checkbox-label {
    font-size: 1em;
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.custom-checkbox {
    margin-right: 5px;
    transform: scale(1.2);
}

.custom-select-group {
    width: 100%;
    margin-bottom: 20px;
}

.custom-select {
    width: calc(100% - 20px);
    border-radius: 5px;
    font-size: 1em;
}

.custom-button {
    background-color: #254480;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    margin: 4px 2px;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.custom-button:hover {
    background-color: #152b56;
}


.custom-results {
    margin-top: 20px;
}

.custom-results h2 {
    color: #333333;
    margin-bottom: 10px;
}

.custom-results ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.custom-results li {
    padding: 15px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.custom-results li.custom-available {
    background: #d4edda;
    color: #155724;
    border-left: 5px solid #28a745;
}

.custom-results li.custom-unavailable {
    background: #f8d7da;
    color: #721c24;
    border-left: 5px solid #dc3545;
}

.custom-results li.custom-premium {
    background: #fff3cd;
    color: #856404;
    border-left: 5px solid #ffc107;
}

.custom-buy-button, .custom-whois-button {
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    margin-top: 10px;
    text-align: center;
    display: block;
    width: 100%;
}

.custom-buy-button {
    background: #28a745;
    color: white;
}

.custom-buy-button:hover {
    background-color: #218838;
}

.custom-whois-button {
    background: #dc3545;
    color: white;
}

.custom-whois-button:hover {
    background-color: #c82333;
}

.custom-hidden {
    display: none;
}

.custom-show-more {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    background: #254480;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.custom-show-more:hover {
    background-color: #3760b0;
}

/* Loader CSS */
.custom-loader {
    width: 100%;
    height: 4px;
    background-color: #f3f3f3;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    border-radius: 4px;
}

.custom-loader::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #007BFF;
    animation: custom-loader-animation 2s infinite;
}

@keyframes custom-loader-animation {
    0% {
        left: 0;
        width: 0;
    }
    50% {
        left: 25%;
        width: 50%;
    }
    100% {
        left: 100%;
        width: 0;
    }
}
/* Mobil uyumlu tasarım */
@media (max-width: 768px) {
    .custom-form {
        padding: 15px;
    }

    .custom-label {
        font-size: 14px;
    }

    .custom-input, .custom-select, .custom-button, .custom-show-more {
        max-width: 100%;
    }

    .custom-results ul {
        grid-template-columns: 1fr;
    }
}
