
/* Layout */
.account-container {
  margin: 0px auto 40px;
  padding: 0 0px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
}

/* Sidebar */
.account-sidebar {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
}
.account-sidebar a{
  color: #000000;
}

.account-sidebar h3 {
  margin-bottom: 15px;
}

.account-sidebar ul {
  list-style: none;
  padding: 0;
}

.account-sidebar li {
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.account-sidebar li.active,
.account-sidebar li:hover {
  background: #fdeeee;
  color: #e53935;
}

/* Content */
.account-content {
  background: #fff;
  border-radius: 8px;
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-box {
  background: #fff5f5;
  border-radius: 8px;
  padding: 20px;
}

.stat-box h2 {
  margin: 0;
  color: #e53935;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

/* Forms */
label {
  font-size: 14px;
  margin-top: 12px;
  display: block;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 0px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

textarea {
  resize: vertical;
}

/* Buttons */
.btn {
  background: #e53935;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid #e53935;
  color: #e53935;
}

@media screen and (max-width: 768px) {
  .account-container { grid-template-columns: 1fr; }

  .account-sidebar {
    order: 2;
  }

  .account-content {
    order: 1;
    overflow: auto;
  }
}
