div.dashboard {
	display: flex;
	padding: 5px;
}

div.applicationTile {
	height: auto;
	text-align: center;
	width: 15vw;
}

div.applicationTile:hover {
	background-color: #DEEBF7;
}

div.applicationTile > a {
	align-items: center;
	color: #000000;
    text-decoration: none;
}

div.applicationTile > a > p:first-child {
	font-size: 14pt;
	font-weight: bold;
}

div.dashboardTile {
	border: 1px #0070C0 solid;
	padding: 5px;
}

#jobsArea > details {
	margin: 10px;
}

/* Main page container */
.page-container {
    display: flex;
    flex-direction: column;
    height: 100vh; /* Full viewport height */
    max-width: 85%;
}

        /* Top bar styling */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
    /* background-color: #ffffff; */
    margin: 0 0 5px -20px;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    height: 80px;
    box-sizing: border-box;
    background-color: #DEEBF7;
    /* font-family: inherit; */
}

/* Main dashboard body styling */
.dashboard-body {
    display: flex;
    flex-grow: 1; /* Takes remaining vertical space */
    overflow: hidden; /* Prevent internal scrollbars from affecting layout badly */
    margin: -5px 0 0 0;
}

/* Sidebar styling */
.sidebar {
	min-width: 20%;
	display: flex;
	flex: 30%;
	flex-direction: column;
    background-color: #fff;
    padding: 10px;
    border-right: 1px solid #ddd;
    height: 100%;
    overflow-y: auto;
    gap: 2px;
}

.sidebar-button {
    display: flex;
    height: 110px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    /* margin: 0px 0; */
    cursor: pointer;
    /* border-radius: 0px; */
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.sidebar-button.disabled{
	opacity: 0.5; /* Makes it look faded */
    pointer-events: none; /* Prevents clicks on the element */
    cursor: not-allowed; /* Changes cursor to a "no" symbol */
}

.sidebar-button span {
    margin: 10px; /* Space between icon and text */
    font-size: 16px;
    font-weight: bold;
    color: #333; /* Darker text color */
}

.sidebar-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #e0f2f7;
    stroke: #007bff;
    fill: none;
    box-sizing: border-box;
}
/* Style for the active/selected button */
.sidebar-button.active {
    background-color: #e0f2f7; /* Light blue background for the selected button */
}

.sidebar-button.active .sidebar-icon {
    background-color: #a7d9ed; /* Slightly darker blue for the active icon background */
    stroke: #0056b3; /* Darker blue for active icon stroke */
}

.sidebar-button.active span {
    color: #0056b3; /* Darker blue for active text */
}

/* Hover effect */
.sidebar-button:hover {
    background-color: #f0f0f0; /* Light grey on hover */
}

.sidebar-button:hover .sidebar-icon {
    background-color: #d1ecf1; /* Slightly darker blue on hover for icon */
}

/* Specific adjustments for the provided SVGs if they are not stroke-based */
#btn-document .sidebar-icon {
    /* If your file-earmark-richtext-fill.svg is a fill-based icon */
    fill: #007bff; /* Fill color for the document icon */
    stroke: none; /* Ensure no stroke if it's fill-based */
}

#btn-content .sidebar-icon {
    /* The provided data URI SVG uses stroke, so stroke property is appropriate */
    stroke: #007bff; /* Stroke color for the content icon */
    fill: none; /* Ensure no fill */
}

        /* Main content area styling */
.main-content-area {
    /* flex-grow: 1; */
    width: 71em;
    padding: 25px;
    background-color: #ffffff;
    /* overflow-y: auto; */
}

.tile-category {
    display: none; /* Hide categories by default */
    flex-wrap: wrap;
    gap: 20px; /* Spacing between tiles */
    justify-content: flex-start; /* Align tiles to the start */
}

.tile-category.active-category {
    margin: 0 0 0 5px;
    display: flex
;
}

/* Dashboard tile styling (from your original code, with minor adjustments) */
.dashboardTile {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px; /* Slightly more rounded corners */
    width: 220px; /* Fixed width for tiles */
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex; /* Using flex for internal alignment */
    flex-direction: column;
}

.dashboardTile:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

.dashboardTile a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* Distribute space */
    height: 100%; /* Make link fill the tile */
}

.dashboardTile img.module-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
}

.dashboardTile h3 {
    margin-top: 10px;
    margin-bottom: -5px;
    font-size: 1.1em;
    color: #333;
    font-weight: 600;
}

.dashboardTile p {
    font-size: 0.85em;
    color: #555;
    line-height: 1.4;
    flex-grow: 1; /* Allow paragraph to take available space */
    margin-bottom: 0;
}
.right-content-area {
    width: 30%;
    text-align: center;
}
.dashboardTile.disabled {
    opacity: 0.5; /* Makes it look faded */
    pointer-events: none; /* Prevents clicks on the element */
    cursor: not-allowed; /* Changes cursor to a "no" symbol */
}