/* Global Styles */ * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; } body { background-color: #f4f7fb; color: #333; } .dashboard-container { width: 85%; margin: 0 auto; } /* Header */ .dashboard-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; background-color: #4a90e2; color: #fff; border-radius: 8px; margin-top: 1rem; padding: 1.5rem 2rem; } .welcome-message { font-size: 1.5rem; font-weight: 600; } .header-icons .icon { font-size: 1.3rem; margin-left: 1rem; cursor: pointer; } /* Summary Cards */ .summary-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 1.5rem 0; } .card { padding: 1.5rem; border-radius: 8px; color: #fff; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); position: relative; overflow: hidden; } .card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; } .card p { font-size: 1rem; margin: 0.2rem 0; } .card button { margin-top: 1rem; padding: 0.5rem 1rem; background-color: #3d3c3cc7; color: inherit; border: none; border-radius: 4px; font-weight: 600; cursor: pointer; } /* Individual Card Colors */ .land-officer { background: #3498db; } .surveyor { background: #27ae60; } .lease-officer { background: #e67e22; } .accountant { background: #9b59b6; } /* Recent Activities */ .recent-activities { background-color: #fff; padding: 1.5rem; border-radius: 8px; margin-bottom: 1.5rem; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } .recent-activities h2 { font-size: 1.5rem; margin-bottom: 1rem; } .activity-feed p { padding: 0.5rem 0; font-size: 1rem; border-bottom: 1px solid #ddd; } /* Quick Actions */ .quick-actions { background-color: #fff; padding: 1.5rem; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } .quick-actions h2 { font-size: 1.5rem; margin-bottom: 1rem; } .actions { display: flex; gap: 1rem; } .actions button { padding: 0.8rem 1.2rem; background-color: #4a90e2; color: #fff; border: none; border-radius: 4px; cursor: pointer; font-weight: 600; transition: background-color 0.3s; } .actions button:hover { background-color: #357abd; }