/* General styling for the investment page */
.ip-user-form-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.ip-user-form-table th,
.ip-user-form-table td {
    padding: 5px 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.ip-user-form-table th {
    background-color: #f5f5f5;
    font-size: 1rem;
}

.ip-user-form-table input[type="text"],
.ip-user-form-table input[type="number"] {
    width: 100%;
    padding: 5px 0px 5px 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.ip-user-button {
    padding: 8px 16px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.ip-user-button:hover {
    background-color: #005d87;
}

.ip-user-description {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

