/* Layout container */
.layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 40px;
}

/* Calculator panel styling */
.calculator-panel {
    max-width: 400px;
    padding: 25px 30px;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    color: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

/* Right-side image */
.side-image {
    width: 350px;   /* shrink it */
    height: auto;
    object-fit: contain;
    opacity: 0.9;
}

.success-and-bubbles {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin: 20px 0;
}

.success-type {
    flex: 1;
}

.bubble-section {
    flex: 1;
}

.bubble-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.bubble {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #e62429;
    cursor: pointer;
    background-color: transparent;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.bubble.filled {
    background-color: #e62429;
}

.bubble:hover {
    transform: scale(1.1);
}

.right-side {
    display: flex;
    flex-direction: column;
    align-items: center;   /* optional: centers the content */
    gap: 1px;
}

.enemy-health-wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}


