body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: "Times New Roman", Times, serif;
    padding: 20px;
}

.card {
    background-color: #1f1b24;
    border-radius: 13px;
    margin-bottom: 20px;
}

.card-body {
    border-radius: 13px;
    background-color: #1f1b24;
    color: #e0e0e0;
    padding: 20px;
}

.message-content {
    background-color: #1f1b24;
    color: #e0e0e0;
    border: 1px solid #1f1b24;
}

.fa-info-circle {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #bb86fc;
}

/* Custom gradient button classes */
.btn-custom-gradient {
    background: linear-gradient(to right, blue, red, maroon) !important;
    color: white;
    border: none;
    box-shadow: none;
}

.btn-custom {
    background: linear-gradient(to right, maroon, orange) !important;
    color: white;
    border: none;
    box-shadow: none;
}

.btn-kostom {
    background: linear-gradient(to right, violet, maroon, orange) !important;
    color: white;
    border: none;
    box-shadow: none;
}

.btn-select {
    background: linear-gradient(to right, black, grey, black) !important;
    color: white;
    border: none;
    box-shadow: none;
}

.btn-copy {
    background: linear-gradient(to right, #333, #555) !important;
    color: white;
    border: none;
    box-shadow: none;
    padding: 3px 8px;
    font-size: 12px;
}

/* Style for the Date and Time section */
#dateTimeSection {
    font-size: 15px;
    color: white;
    padding: 4px;
    margin-bottom: 4px;
    text-align: center;
}

/* Style for the IP and Location section */
#ipLocationSection {
    color: white;
    margin-bottom: 10px;
    text-align: center;
    font-size: 15px;
}

.close {
    color: #00b0ff;
}

.btn {
    border-radius: 10px;
    padding: 8px 16px;
    cursor: pointer;
    margin: 5px;
}

/* Button container for centering */
.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Textarea styling */
.custom-textarea {
    width: 100%;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px;
    border-radius: 5px;
    resize: none;
    border: 1px solid #333;
}

/* Badge styling */
.badge {
    padding: 5px 10px;
    border-radius: 5px;
    margin: 0 5px;
}

.badge-success {
    background-color: #28a745;
}

.badge-warning {
    background-color: #ffc107;
    color: #212529;
}

.badge-primary {
    background-color: #007bff;
}

.badge-danger {
    background-color: #dc3545;
}

.badge-info {
    background-color: #17a2b8;
}

.badge-dark {
    background-color: #343a40;
}

/* Form control styling */
.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid #333;
    padding: 8px;
    border-radius: 5px;
}

/* Floating panel styling */
.floating-panel {
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #2c2c2c;
    border: 1px solid #555;
    padding: 20px;
    width: 350px;
    max-width: 95%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    z-index: 9999;
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.floating-panel.show {
    opacity: 1;
    pointer-events: auto;
}

/* Add styles for the error container */
.error-container {
    margin-top: 15px;
    margin-bottom: 20px;
}

/* Results container styling (3x3 grid) */
.results-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.result-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.result-box {
    background-color: #1f1b24;
    border-radius: 10px;
    border: 1px solid #333;
    overflow: hidden;
}

.result-header {
    background-color: #2c2c2c;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.result-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.result-content {
    padding: 10px;
    max-height: 200px;
    overflow-y: auto;
    /* Changed from 'scroll' to 'auto' to only show scrollbars when needed */
}

/* Result item styling */
.result-item {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #4a6cf7;
}

.result-item p {
    margin: 5px 0;
}

.result-item .url {
    font-weight: bold;
    word-break: break-all;
}

.result-item .payment {
    color: #2a9d8f;
}

.result-item .captcha {
    color: #e76f51;
}

.result-item .error {
    color: #e63946;
}

.result-item .timestamp {
    font-size: 12px;
    color: #aaa;
}

/* Loading indicator */
.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: #4a6cf7;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hidden {
    display: none;
}

.hidden-results {
    display: none;
}

/* Link styling */
a {
    color: #4a6cf7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .results-container {
        flex-direction: column;
    }

    .result-column {
        width: 100%;
    }
}

/* Add styles for the hide/show toggle button */
.toggle-btn {
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    cursor: pointer;
    padding: 0 5px;
}

/* Add styles for hidden content */
.hidden-content {
    display: none;
}