#celeb_preview img {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
#celeb_upload_container label:hover {
    border-color: #007bff !important;
    background: #f0f8ff !important;
}
#celeb_upload_container button:hover {
    background: #0056b3 !important;
}
#celeb_result{
	display:none;
}
/* Container */ #celebrity-app { margin: 40px auto; font-family: "Segoe UI", Roboto, sans-serif; text-align: center; color: #333; } /* Upload Box */ .upload-box { border: 2px dashed #aaa; border-radius: 15px; padding: 40px; cursor: pointer; transition: all 0.3s ease; background: #fafafa; } .upload-box:hover { border-color: #007bff; background: #f0f8ff; } .upload-box input { display: none; } /* Preview */ #preview { margin: 20px 0; } #preview img { max-width: 200px; border-radius: 15px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); } /* Button */ #analyzeBtn { background: #007bff; color: white; padding: 12px 25px; border: none; border-radius: 30px; font-size: 16px; cursor: pointer; transition: 0.3s; } #analyzeBtn:disabled { background: #aaa; cursor: not-allowed; } #analyzeBtn:hover:not(:disabled) { background: #0056b3; } /* Loader */ .loader { border: 6px solid #f3f3f3; border-top: 6px solid #007bff; border-radius: 50%; width: 40px; height: 40px; margin: 20px auto; animation: spin 1s linear infinite; display: none; } @keyframes spin { 100% { transform: rotate(360deg); } } /* Results */ #results { margin-top: 30px; } .result-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; } .result-card { background: white; border-radius: 15px; padding: 15px; width: 160px; text-align: center; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: transform 0.3s ease; } .result-card:hover { transform: translateY(-5px); } .result-card img { width: 100%; border-radius: 12px; margin-bottom: 10px; } .score-bar { height: 8px; border-radius: 4px; background: #eee; margin-top: 5px; } .score-fill { height: 100%; border-radius: 4px; background: #007bff; width: 0; transition: width 0.6s ease; } 