.uci-acct-info-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border-top: 4px solid #255799;
}

.uci-acct-info-box p {
    margin-bottom: 15px;
}

.uci-acct-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
    justify-content: center;
}

.uci-acct-buttons a {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #255799;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.uci-acct-buttons a:hover {
    background-color: #1b3d6d;
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.uci-acct-buttons a i {
    margin-right: 8px;
}

.uci-acct-note {
    background-color: #fff3cd;
    border-left: 4px solid #f0ab00;
    padding: 10px 15px;
    margin-top: 15px;
    border-radius: 0 4px 4px 0;
}

.uci-acct-note p {
    margin: 0;
    font-size: 0.95em;
}

.uci-acct-tabs {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.uci-acct-tabs nav {
    display: flex;
    background-color: #f0f5fa;
    border-bottom: 1px solid #6aa2b8;
    overflow-x: auto;
}

.uci-acct-tabs nav button {
    padding: 14px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: Arial, sans-serif;
    font-weight: 600;
    color: #555759;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.uci-acct-tabs nav button:hover {
    color: #255799;
    background-color: rgba(0, 100, 164, 0.05);
}

.uci-acct-tabs nav button.active {
    color: #255799;
    border-bottom-color: #255799;
    background-color: rgba(0, 100, 164, 0.08);
}

.uci-acct-tabs nav button.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: #fecc07;
}

.uci-acct-tabs .uci-acct-content {
    padding: 25px;
}

.uci-acct-tabs .uci-acct-content > div {
    display: none;
}

.uci-acct-tabs .uci-acct-content > div.active {
    display: block;
    animation: uciAcctFadeIn 0.5s ease;
}

.uci-acct-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-gap: 25px;
    grid-template-areas:
        "access info"
        "reports reports";
}

.uci-acct-layout section {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #255799;
}

.uci-acct-layout section:nth-child(1) {
    grid-area: access;
}

.uci-acct-layout section:nth-child(2) {
    grid-area: info;
}

.uci-acct-layout section:nth-child(3) {
    grid-area: reports;
    border-left: 4px solid #fecc07;
}

.uci-acct-layout section header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.uci-acct-layout section header h2 {
    color: #000000;
    font-size: 20px;
    margin: 0;
    display: flex;
    align-items: center;
}

.uci-acct-layout section:nth-child(3) header h2 {
    color: #333;
}

.uci-acct-layout section header h2 i {
    margin-right: 10px;
    color: #255799;
}

.uci-acct-layout section:nth-child(3) header h2 i {
    color: #fecc07;
}

.uci-acct-all-link {
    color: #255799;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: rgba(0, 100, 164, 0.05);
}

.uci-acct-all-link:hover {
    background-color: rgba(0, 100, 164, 0.08);
    transform: translateY(-2px);
}

.uci-acct-all-link i {
    margin-right: 5px;
    font-size: 12px;
}

.uci-acct-layout section ul {
    list-style: none;
}

.uci-acct-layout section ul li {
    margin-bottom: 5px;
}

.uci-acct-layout section ul a {
    display: flex;
    align-items: center;
    color: #000000;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.uci-acct-layout section ul a:hover {
    background-color: rgba(0, 100, 164, 0.08);
    transform: translateX(5px);
}

.uci-acct-layout section ul a i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
    color: #255799;
}

.uci-acct-layout section:nth-child(3) ul a i {
    color: #fecc07;
}

@keyframes uciAcctFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .uci-acct-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "access"
            "info"
            "reports";
    }
}

@media (max-width: 768px) {
    .uci-acct-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .uci-acct-buttons a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .uci-acct-tabs .uci-acct-content {
        padding: 15px;
    }
    
    .uci-acct-layout section {
        padding: 15px;
    }
    
    .uci-acct-layout section header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .uci-acct-all-link {
        margin-top: 10px;
        align-self: flex-end;
    }
}

@media (max-width: 600px) {
    .uci-acct-tabs nav button {
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .uci-acct-tabs nav button.active::after {
        width: 20px;
    }
    
    .uci-acct-layout section header h2 {
        font-size: 16px;
    }
    
    .uci-acct-layout section ul a {
        padding: 6px 8px;
        font-size: 14px;
    }
}
.uci-acct-container a.uci-acct-link {
    background: none;
    border-bottom: none;
    color: #000000;
    transition: none;
}

.uci-acct-container a.uci-acct-link:hover {
    background: rgba(0, 100, 164, 0.08);
    color: #255799;
}

.uci-acct-buttons a.uci-acct-link {
    background-color: #255799;
    color: white;
    transition: all 0.3s ease;
}

.uci-acct-buttons a.uci-acct-link:hover {
    background-color: #004976;
    color: white;
}

.uci-acct-all-link.uci-acct-link {
    color: #255799;
    background-color: rgba(0, 100, 164, 0.05);
    transition: all 0.3s ease;
}

.uci-acct-all-link.uci-acct-link:hover {
    background-color: rgba(0, 100, 164, 0.08);
    color: #255799;
}