.ai-detector-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.image-box {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}
#results {
    width: 100%;
    margin-top: 20px;
    font-weight: bold;
}

.ai-detector-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.image-box {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}
#results {
    width: 100%;
    margin-top: 20px;
    font-weight: bold;
}



.ai-detector-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.image-box {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}

.image-box label {
    font-weight: bold;
    margin-bottom: 5px;
}

#detect-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

#detect-btn:hover {
    background-color: #005177;
}

#results {
    width: 100%;
    margin-top: 20px;
    font-weight: bold;
}

/* AI-generated / Real results styling */
.result-left, .result-right, .result-similarity {
    padding: 10px;
    color: #fff;
	font-weight: bold;
    font-weight: bold;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Left Image: AI-generated → red */
.result-left.ai {
    background-color: #e74c3c; /* red */
}

/* Right Image: Real → green */
.result-right.real {
    background-color: #27ae60; /* green */
}

/* Similarity → success color (green) */
.result-similarity {
    background-color: #2ecc71; /* bright green */
    text-align: center;
}

/* Responsive for mobile */
@media (max-width: 600px) {
    .ai-detector-wrapper {
        flex-direction: column;
    }
    #detect-btn {
        width: 100%;
    }
}


.result-left.ai,
.result-right.ai {
    background-color: #e74c3c; /* red */
    color: #fff;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.result-left.real,
.result-right.real {
    background-color: #27ae60; /* green */
    color: #fff;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.result-similarity {
    background-color: #2ecc71; /* bright green */
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}