/* Dashboard Styles */

/* Breadcrumb Section */
.wptb-breadcrumb-section {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.wptb-breadcrumb-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 20px;
    justify-content: center;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Logout Button */
.logout-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.logout-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.logout-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Dashboard Section */
.wptb-dashboard-section {
    background: #0f0f0f;
    color: white;
}

/* Dashboard Tabs */
.dashboard-tabs {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    justify-content: center;
}

.dashboard-tabs .nav-link {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 15px 25px;
    margin: 0 5px;
    border-radius: 10px 10px 0 0;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.dashboard-tabs .nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.dashboard-tabs .nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 3px solid white;
}

.dashboard-tabs .nav-link i {
    margin-right: 8px;
    font-size: 1.1em;
}

/* Dashboard Content */
.dashboard-content {
    padding: 20px 0;
}

.tab-pane {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dashboard Cards */
.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.dashboard-card h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Overview Cards */
.dashboard-card .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.dashboard-card .card-icon i {
    font-size: 1.8rem;
    color: white;
}

.dashboard-card .card-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.dashboard-card .card-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

/* Activity List */
.activity-list {
    margin-top: 20px;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.activity-icon i {
    color: white;
    font-size: 1.1rem;
}

.activity-content h6 {
    color: white;
    margin: 0 0 5px 0;
    font-size: 0.95rem;
}

.activity-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 5px 0;
    font-size: 0.85rem;
}

.activity-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateX(5px);
}

.quick-action-btn i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Profile Section */
.profile-info {
    text-align: center;
    margin-bottom: 20px;
}

.profile-avatar {
    margin-bottom: 20px;
}

.profile-avatar img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.profile-details h5 {
    color: white;
    margin-bottom: 10px;
}

.profile-details p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

/* Forms */
.profile-form label,
.password-form label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 8px;
}

.profile-form .form-control,
.password-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.profile-form .form-control:focus,
.password-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1);
}

.profile-form .form-control::placeholder,
.password-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-primary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
}

/* Settings */
.settings-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-info h6 {
    color: white;
    margin: 0 0 5px 0;
    font-size: 0.95rem;
}

.setting-info p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.85rem;
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.form-check-input:checked {
    background-color: white;
    border-color: white;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1);
}

/* Analytics */
.chart-placeholder {
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.chart-info p {
    color: rgba(255, 255, 255, 0.6);
    margin: 5px 0;
}

.top-photos {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.photo-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.photo-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.photo-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-stats h6 {
    color: white;
    margin: 0 0 5px 0;
    font-size: 0.9rem;
}

.photo-stats p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-tabs {
        flex-wrap: wrap;
    }
    
    .dashboard-tabs .nav-link {
        margin-bottom: 5px;
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .breadcrumb-title {
        font-size: 2rem;
    }
    
    .dashboard-card {
        padding: 20px;
    }
    
    .dashboard-card .card-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .dashboard-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .dashboard-tabs .nav-link i {
        display: none;
    }
    
    .breadcrumb-title {
        font-size: 1.8rem;
    }
}
