* {
    box-sizing: border-box;
}

body {
    text-align: center;
    margin: 0;
    font-family: Arial, sans-serif;
    background: #eeeeee;
    color: #222;
    padding: 40px;
}
.header{
    display: flex;
    gap: 10px;
}
.companyLogo{
    height: 64px;
    width: auto;
}
.dashboard{
    display: flex;
    gap: 20px;
}

.container {
    max-width: 700px;
    margin: 0 auto;
}

h1 {
    margin-bottom: 5px;
    font-size: 26px;
    font-weight: 600;
}

p {
    margin-top: 0;
    color: #666;
}

.search-area {
    margin-top: 25px;
    display: flex;
    gap: 8px;
}

input {
    padding: 10px;
    font-size: 15px;
    border: 1px solid #bbb;
    border-radius: 4px;
    width: 240px;
    background: white;
}

button {
    padding: 10px 16px;
    font-size: 15px;
    border: 1px solid #333;
    background: #333;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #111;
}

table {
    margin-top: 25px;
    border-collapse: collapse;
    width: 400px;
    background: white;
}

td {
    text-align: center;
    border: 1px solid #ccc;
    padding: 10px;
}

td:first-child, th {
    font-weight: bold;
    background: #f7f7f7;
}
td:first-child{
    text-align: left;
}
@media (max-width: 900px) {
    body {
        padding: 20px;
    }

    .dashboard {
        flex-direction: column;
        align-items: center;
    }

    table {
        width: 100%;
        max-width: 500px;
    }

    .card,
    #theMag7,
    #theIndices {
        width: 100%;
        max-width: 500px;
    }
}