.dbc-portal-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 3rem;
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #fff;
}

.dbc-portal-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #00f3ff;
}

.dbc-portal-dashboard {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 5%;
}

.portal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .portal-grid {
        grid-template-columns: 1fr;
    }
}

.portal-card {
    padding: 2rem;
}

.portal-card h3 {
    margin-bottom: 1.5rem;
    color: #00f3ff;
}

#updateMsg {
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 1.2rem;
}

/* Reusing theme classes but ensuring they work in plugin context */
.btn-glow {
    background: #00f3ff;
    color: #000;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px #00f3ff;
    text-align: center;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px #00f3ff;
}

.btn-outline {
    background: transparent;
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}
