/* Container for the entire tracker form */
#ipt-portfolio-tracker {
    font-family: 'Arial', sans-serif;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    background: linear-gradient(to bottom right, #f7f7f7, #e0e0e0);
}

/* Title of the form */
#ipt-portfolio-tracker h2 {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

/* Form Fields */
#ipt-portfolio-form input[type="text"],
#ipt-portfolio-form input[type="number"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background-color: #f7f7f7;
    box-sizing: border-box;
}

#ipt-portfolio-form input[type="text"]:focus,
#ipt-portfolio-form input[type="number"]:focus {
    border-color: #007BFF;
    background-color: #fff;
    outline: none;
}

/* Submit Button */
#ipt-portfolio-form button {
    width: 100%;
    padding: 15px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#ipt-portfolio-form button:hover {
    background-color: #0056b3;
}

/* Results Section */
#ipt-portfolio-results {
    margin-top: 30px;
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    display: none; /* Hide results by default */
}

#ipt-portfolio-results h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

#ipt-portfolio-results p {
    font-size: 18px;
    color: #555;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #ipt-portfolio-tracker {
        margin: 20px;
        padding: 20px;
    }

    #ipt-portfolio-form button {
        font-size: 16px;
    }

    #ipt-portfolio-results {
        margin-top: 20px;
    }
}
