.btaamember {
    display: inline-block;
    margin-left: 50px;
    margin-right: auto;
    vertical-align: top;
    text-align: center;
    float: left;
}
.btaaname {
    display: inline-block;
}
.btaamember img {
    margin-left: auto;
    margin-right: auto;
    height: 150px;
}
.btaashrink img {
    transition: 1s ease;
}

.btaashrink img:hover {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    transition: 1s ease;
    display: inline-block;
}

/* updated CSS for KB2.0 */
/* Global Reset */
body {
    font-family: 'Inter', sans-serif;
    background-color: #d9d9da; /* Light Gray */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #080302; /* Deep Black for readability */
}

/* Container Layout */
.resource-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

/* Individual Resource Cards */
.resource-card {
    background: #ffffff;
    border-radius: 0; /* Square corners */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding: 20px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    position: relative;
}

/* Card Hover Effect */
.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.12);
}

/* Resource Header */
.resource-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: black;
    padding: 15px;
    border-radius: 0; /* Square corners */
    margin-top: 10px; /* Space between icon and header */
}

.resource-header h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase; /* Make titles all uppercase */
    border-bottom: 2px solid #0048b7; /* Thin blue line below text */
    padding-bottom: 5px; /* Space between text and line */
}

/* Resource Icon */
.resource-icon {
    font-size: 48px;
    color: black;
}

/* Resource Icon */
.resource-icon img {
    width: 48px;
    height: 48px;
}

/* Links Section */
.resource-links {
    display: flex;
    flex-direction: column;
    padding: 15px;
    gap: 12px;
}

/* Links Styling */
.resource-links a {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 14px;
    background-color: #eef2f7;
    color: #000000; /* Black text */
    text-decoration: none;
    font-weight: 500;
    border-radius: 0; /* Square corners */
    transition: all 0.3s ease-in-out;
    gap: 10px; 
}

/* Links Hover */
.resource-links a:hover {
    background-color: #ffffff; /* White */
    color: #000000; /* Black text */
    transform: scale(1.03);
}

/* Help Button */
.help-btn {
    display: block;
    width: 85%;
    margin: 15px auto 10px;
    padding: 14px;
    background: #67797d; /* Steel Gray */
    color: white;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    border-radius: 0; /* Square corners */
    transition: background 0.3s ease, transform 0.2s ease;
}

/* Help Button Hover */
.help-btn:hover {
    background-color: #ffffff; /* White */
    color: #000000; /* Black text */
    transform: scale(1.05);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .resource-container {
        grid-template-columns: 1fr;
    }
}

/* Software List */
/* Global Reset */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #333;
}

/* Table Container */
.table-container {
    width: 100%;
    max-width: 1200px;
    background: #fff;
    border-radius: 0; /* Square corners */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    overflow: hidden;
    position: relative;
}

/* Styled Expand/Collapse and Grouping Buttons */
.table-controls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px; /* Increased padding */
    gap: 10px;
    padding-top: 10px;
}

.table-controls button {
    background-color: #0048b7; /* Big Ten Dark Blue */
    color: white;
    border: none;
    padding: 10px 16px; /* Adjusted padding for a better look */
    font-size: 14px;
    border-radius: 0; /* Square corners */
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

.table-controls button:hover {
    background-color: #ffffff; /* White */
    color: #000000; /* Black text */
    transform: scale(1.05);
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th, td {
    padding: 14px;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #0048b7; /* Big Ten Dark Blue */
    color: white;
    font-weight: 600;
    text-align: left;
}

/* Category Headers */
.category-header {
    background-color: #d1d8e0; /* Soft neutral shade */
    color: #333;
    font-weight: bold;
    text-align: left;
    padding: 14px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    border-radius: 0; /* Square corners */
}

.category-header:hover {
    background-color: #ffffff; /* White */
    color: #000000; /* Black text */
}

/* Expandable Arrow Rotation */
.category-header span {
    float: right;
    transition: transform 0.3s;
}

.category-header.expanded span {
    transform: rotate(180deg);
}

/* Smooth Row Hover Effect */
tbody tr:not(.category-header):hover {
    background-color: #ffffff; /* White */
    color: #000000; /* Black text */
    transition: background 0.3s ease-in-out;
}

/* Rounded Edges for a Softer Look */
th:first-child, td:first-child {
    border-radius: 0; /* Square corners */
}

th:last-child, td:last-child {
    border-radius: 0; /* Square corners */
}

/* App Quick Links KB article */
/* General styles */
.company-apps-article {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.company-apps-article .title {
    font-size: 24px;
    margin: 20px 0;
}

/* Grid container for application cards */
.company-apps-article .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

/* Card styling */
.company-apps-article .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
    height: 250px;
    cursor: pointer; /* Indicates the entire card is clickable */
}

/* Hover effect */
.company-apps-article .card:hover {
    transform: translateY(-5px);
    background-color: #e0e0e0;
}

/* Application logos */
.company-apps-article .logo {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    flex-grow: 1;
    pointer-events: none; /* Prevents image from intercepting clicks */
}

/* Application name text - aligned at bottom */
.company-apps-article .app-name {
    font-size: 18px;
    font-weight: bold;
    color: black;
    text-align: center;
    margin-top: auto;
    padding-top: 10px;
}

/* Branding Colors */
.color-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #ffffff;
}

.color-table th, .color-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

/* Light Gray Table Header */
.color-table th {
    background-color: #f0f0f0; /* Light Gray */
    color: #000000; /* Black Text */
    font-weight: bold;
}

/* Color Swatches Scoped to Table */
.color-table .color-swatch {
    display: inline-block;
    width: 80px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Larger swatches for primary colors */
.color-table.primary .color-swatch {
    width: 120px;
    height: 60px;
}

/* Color Swatch Styles Scoped to Table */
.color-table .blue { background-color: #0099d8; }
.color-table .black { background-color: #080302; }
.color-table .white { background-color: #ffffff; border: 1px solid #ddd; }
.color-table .navy { background-color: #01487e; }
.color-table .sky { background-color: #01bdf2; }
.color-table .steel { background-color: #67797d; }
.color-table .light-gray { background-color: #d9d9da; }
.color-table .bold { background-color: #0164ac; }
.color-table .red { background-color: #f0595a; }
.color-table .lime { background-color: #8bc63e; }

/* Responsive Table Styling */
@media screen and (max-width: 768px) {
    .color-table {
        font-size: 14px;
    }
}
