.btn-upload,
.btn-run {
    color: white;
    border: none;
    width: 190px;
    text-align: center;
    padding: 10px 20px;     /* smaller than btn-lg default */
    font-size: 1.15rem;        /* slightly smaller text */
    border-radius: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
}

/* Upload button base color */
.btn-upload {
    background-color: #4f46e5;
}

/* Run button base color */
.btn-run {
    background-color: #10b981;
}

.btn-export {
    background-color: transparent;
    color: rgb(83, 202, 3);
    border: 2px solid rgb(83, 202, 3);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-export:hover {
    background-color: rgb(83, 202, 3);
    color: #000;
}

/* Hover effect */
.btn-upload:hover,
.btn-run:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    color: white;
}

/* Specific hover colors */
.btn-upload:hover {
    background-color: #4338ca;
}

.btn-run:hover {
    background-color: #059669;
}

/* Optional: remove Bootstrap focus glow */
.btn-upload:focus,
.btn-upload:active,
.btn-run:focus,
.btn-run:active {
    box-shadow: none;
    color: white;
}

.card-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 12px; /* optional, slightly smoother look */
}

.card-hover:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18) !important;
}

#cameo {
    position: fixed;
    top: 50%; 
    left: 50%;
  
    width: 400px; 
    transform: translate(-50%, -50%) scale(0) rotate(0deg);
  
    opacity: 0;
    pointer-events: none;
  
    transition: transform 0.6s ease, opacity 0.6s ease;
  
    /* ✨ Glow effect */
    filter: drop-shadow(0 0 15px rgba(0, 255, 200, 0.8));
  }
  
  
  /* Active state */
  #cameo.show {
    transform: translate(-50%, -50%) scale(1) rotate(720deg);
    opacity: 1;
  }