#aisha-stock-calculator {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    margin: 50px auto;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    max-width: 700px;
}

#aisha-stock-calculator h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.share {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.buy-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: space-between;
}

.buy-section label {
    min-width: 120px;
    font-weight: 600;
    color: #444;
}

.buy-section input {
    padding: 6px 10px;
    border: none;
    outline: none;
    font-size: 16px;
    background-color: #46b94a;
    color: #fff;
    border-radius: 6px;
}

input::placeholder {
    color: #f8f9fa;
}

.btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #43a047;
}

.results {
    margin-top: 25px;
    font-size: 18px;
    color: #222;
}

.para {
    display: flex;
    justify-content: space-between;
}

.results p {
    margin: 8px 0;
}

/* Remove Share Button */
.removeShare {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #d9534f;
    position: absolute;
    right: 10px;
    top: 10px;
}
