/*
Theme Name: Abodie Child
Theme URI: https://yourdomain.com/
Description: Child theme for ABODIEAI built on Grid Mode Pro
Author: Wally Beddoe
Template: gridmode
Version: 1.0
*/

/* ABODIEAI Dashboard CSS */
body {
  font-family: 'Poppins', Arial, sans-serif;
  background: linear-gradient(90deg, #E8F4F8 0%, #F7DC6F 100%);
  margin: 0;
  padding: 0;
  color: #222;
}
.sidebar {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: 220px;
  background: #2C5F8A;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 32px;
  box-shadow: 2px 0 8px rgba(44,95,138,0.04);
}
.sidebar .logo {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.sidebar nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
}
.sidebar nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 32px;
  border-radius: 18px 0 0 18px;
  transition: background 0.2s;
}
.sidebar nav a.active, .sidebar nav a:hover {
  background: #F4D03F;
  color: #2C5F8A;
}
.main {
  margin-left: 220px;
  padding: 40px 48px;
  min-height: 100vh;
  background: none;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.bodie-avatar {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 12px;
  background: #fff;
  border-radius: 20px;
  padding: 8px 16px;
  box-shadow: 0 2px 8px rgba(44,95,138,0.06);
  transition: box-shadow 0.2s;
}
.bodie-avatar:hover {
  box-shadow: 0 4px 16px rgba(44,95,138,0.14);
}
.bodie-avatar img {
  width: 40px; height: 40px; border-radius: 50%;
  background: #F4D03F;
  border: 2px solid #E8F4F8;
}
.bodie-status {
  font-size: 1em;
  font-weight: 500;
  color: #2C5F8A;
}

.property-switcher {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}
.property-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(44,95,138,0.06);
  padding: 20px 26px;
  min-width: 220px;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 2px solid #E8F4F8;
  display: flex; flex-direction: column; gap: 8px;
}
.property-card.selected, .property-card:hover {
  box-shadow: 0 6px 18px rgba(44,95,138,0.12);
  border-color: #F4D03F;
  transform: translateY(-2px) scale(1.03);
}
.property-title {
  font-size: 1.1em; font-weight: 600; color: #2C5F8A;
}
.property-address {
  font-size: 0.95em; color: #777;
}
.property-stats {
  display: flex; gap: 16px; margin-top: 8px;
}
.stat {
  font-size: 0.95em; color: #2C5F8A;
  background: #F7DC6F;
  border-radius: 8px; padding: 2px 10px;
  font-weight: 600;
}

.dashboard-cards {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}
.dashboard-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(44,95,138,0.06);
  padding: 28px 30px;
  flex: 1;
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start;
}
.dashboard-card .card-title {
  font-size: 1.05em; font-weight: 600; color: #2C5F8A;
}
.dashboard-card .card-value {
  font-size: 2em; font-weight: 600;
  color: #2C5F8A;
  background: #F4D03F;
  border-radius: 8px;
  padding: 3px 16px;
  margin-left: -8px;
  margin-bottom: 2px;
  box-shadow: 0 0 0 2px #F4D03F;
}
.dashboard-card .card-desc {
  font-size: 0.95em; color: #666;
}

.timeline {
  margin-top: 14px;
}
.timeline-title {
  font-size: 1.1em; font-weight: 600; color: #2C5F8A; margin-bottom: 12px;
}
.timeline-list {
  display: flex; flex-direction: column; gap: 18px;
}
.timeline-event {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(44,95,138,0.06);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 18px;
  border-left: 6px solid #F7DC6F;
  transition: box-shadow 0.2s;
}
.timeline-event:hover {
  box-shadow: 0 4px 16px rgba(44,95,138,0.12);
  border-left: 6px solid #F4D03F;
}
.event-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: #E8F4F8;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6em; color: #2C5F8A;
}
.event-details {
  flex: 1; display: flex; flex-direction: column; gap: 3px;
}
.event-title { font-weight: 600; color: #222; }
.event-desc { font-size: 0.97em; color: #555; }
.event-date { font-size: 0.92em; color: #888; }
.bodie-comment {
  font-size: 0.95em;
  color: #2C5F8A;
  margin-left: 10px;
  background: #F7DC6F;
  border-radius: 8px;
  padding: 2px 10px;
  font-style: italic;
  font-weight: 600;
}

/* Responsive for smaller screens */
@media (max-width: 900px) {
  .main { padding: 24px 8px; }
  .dashboard-cards { flex-direction: column; gap: 18px; }
  .property-switcher { flex-direction: column; gap: 12px; }
}
