/* styles.css */

/*Home*/

table {
    border-collapse: collapse;
    width: 100%;
}

th,
td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}

input[type="text"],
input[type="number"],
button {
    margin-top: 8px;
    margin-right: 8px;
    padding: 8px;
    font-size: 16px;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}


/*TickerPage*/

.finance-summary {
    border: 10px solid #ccc;
    margin-bottom: 10px;
}

.sheet {
    margin-top: 10px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    background-color: #f2f2f2;
    padding: 10px;
    text-align: left;
    font-weight: bold;
}

.table td {
    padding: 10px;
    border-top: 1px solid #ccc;
}

.bignumber {
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #007bff; /* Blue color */
    text-align: right;
}



