.dashboard_modal_content {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    padding: 12px 79px;
    overflow-y: auto;
    background-color: white;
    display: flex;
    align-items: center;
    gap: 0px;
}

.dashboard_header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.dashboard_header_left {
    display: flex;
    flex-direction: column;
}

.dashboard_tab_wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.dashboard_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 2em auto;
    max-width: 800px;
    width: fit-content;
    min-width: 500px;
}

.dashboard_card {
    background-color: var(--extra-light);
    padding: 2em;
    text-align: center;
    border-left: 4px solid var(--accent);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: ease-in-out 0.25s;
}

.dashboard_card:hover {
    background-color: var(--accent);
}

.dashboard_card:hover .dashboard_icon,
.dashboard_card:hover .dashboard_title,
.dashboard_card:hover p {
    color: white;
}

.dashboard_icon {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 0.5em;
}

.dashboard_title {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 0.5em;
}

.dashboard_tabs {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid var(--gray);
    border-top: 1px solid var(--gray);
    width: 100%;
    justify-content: center;
    margin: 12px 0 20px 0;
}

.dashboard_tab_content {
    background-color: white;
    height: 100%;
    width: 100%;
}

.dashboard_button_default {
    padding: 0.95em 1.5em;
    background-color: var(--accent);
    color: var(--white);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: ease-in-out 0.3s;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    font-size: 0.8em;
    border: 2px solid var(--accent);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.dashboard_button_default:hover {
    background-color: white;
    color: var(--accent);
}

.dashboard_button_default_icon {
    font-size: 17px;
}

.tab_button {
    background: transparent;
    border: none;
    font-weight: bold;
    padding: 10px 20px;
    cursor: pointer;
    color: var(--dark-gray);
    border-bottom: 2px solid transparent;
    transition: border 0.3s, color 0.3s;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.tab_button:hover {
    color: var(--accent);
}

.tab_button.active {
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
}

.tab_button_icon {
    font-size: 20px;
}

.tab_button_text {
    font-size: 14px;
    font-weight: 560;
}

.dashboard_item_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 700px;
}

.dashboard_item_main {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.dashboard_item_info_wrapper {
    display: flex;
    flex-direction: column;
}

.dashboard_item_icon {
    font-size: 30px;
    color: var(--accent);
}

.dashboard_item_title {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
}

.dashboard_item_text {
    color: var(--dark-gray);
    font-size: 13px;
    font-weight: 500;
}

.dashboard_button {
    background-color: var(--accent);
    color: white;
    cursor: pointer;
    height: 36px;
    border: 2px solid var(--accent);
    padding: 0 20px;
    transition: ease-in-out 0.25s;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.dashboard_button:hover {
    background-color: transparent;
    color: var(--accent);
}

.dashboard_button_text {
    font-size: 14px;
    font-weight: 600;
}

.dashboard_button_icon {
    font-size: 16px;
}