/* Base */
#tcss-dashboard-ui { display: flex; font-family: 'Poppins', sans-serif; background: #f1f2f7; min-height: 600px; }

/* Sidebar */
.sidebar { width: 280px; background: #272c33; color: #fff; padding-top: 20px; }
.sidebar .logo { font-size: 24px; font-weight: bold; text-align: center; margin-bottom: 40px; }
.sidebar nav a { display: block; padding: 15px 25px; color: #c8c9ce; text-decoration: none; border-left: 3px solid transparent; transition: 0.3s; }
.sidebar nav a:hover, .sidebar nav a.active { background: #202529; border-left-color: #007bff; color: #fff; }

/* Content */
.content { flex: 1; padding: 30px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }

/* Cards */
.card { background: #fff; padding: 25px; border-radius: 5px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.stat-blue { border-top: 3px solid #007bff; }
.stat-green { border-top: 3px solid #28a745; }
.stat-red { border-top: 3px solid #dc3545; }
.stat-yellow { border-top: 3px solid #ffc107; }

.stat-blue h3, .stat-green h3, .stat-red h3, .stat-yellow h3 { font-size: 32px; margin: 0; color: #333; }

/* Gig Grid (Frontend) */
.tcss-gig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tcss-card { background: #fff; border: 1px solid #ddd; border-radius: 8px; overflow: hidden; }
.gig-thumb img { width: 100%; height: 200px; object-object: cover; }
.gig-body { padding: 15px; }
.gig-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 15px; }
.btn-buy { background: #28a745; color: white; padding: 8px 15px; border: none; cursor: pointer; }

/* Chat */
.chat-box { height: 300px; overflow-y: auto; background: #f9f9f9; padding: 15px; margin-bottom: 15px; border: 1px solid #eee; }
.msg { padding: 8px 12px; margin-bottom: 5px; border-radius: 5px; max-width: 70%; }
.msg.me { background: #007bff; color: white; margin-left: auto; }
.msg.them { background: #e9ecef; }