/* TEXO App - Dashboard/Menu Styles */

/* Hide default WordPress elements */
.page-template-page-dashboard .site-header,
.page-template-page-dashboard .site-footer,
.page-template-page-dashboard #wpadminbar {
    display: none !important;
}

.page-template-page-dashboard body {
    margin: 0 !important;
    padding: 0 !important;
    background: #000;
}

.dashboard-wrap {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    position: relative;
    background: #000;
    overflow: hidden;
}

.dashboard-bg {
    position: absolute;
    left: -10px;
    top: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
}

.dashboard-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-content {
    position: relative;
    z-index: 10;
    padding: 40px 20px 80px;
    height: 100vh;
    overflow-y: auto;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.dashboard-card {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 150px;
    position: relative;
}

.dashboard-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.card-icon {
    margin-bottom: 15px;
}

.card-icon img {
    width: 66px;
    height: auto;
}

.card-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}
