/* =================================== */
/* SPECIFICKÉ STYLY PRO PROFIL
/* =================================== */

.profile-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 40px;
  position: relative;
  border: 1px solid #f0f0f0;
}

.profile-hero {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f8f9fa;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.profile-identity {
  flex-grow: 1;
}

#profile-name {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #222;
}

#profile-email {
  margin: 2px 0 0;
  font-size: 13px;
  color: #888;
}

.logout-icon-btn {
  background: #f8f9fa;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
}

.logout-icon-btn:hover {
  background: #ffe5e5;
  color: #d00000;
}

.profile-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #fbfbfb;
  border-radius: 15px;
  padding: 20px;
}

.stat-box {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #222;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 11px;
  color: #777;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.stat-separator {
  width: 1px;
  height: 40px;
  background: #ddd;
}

.ticks-section h3 {
  font-size: 18px;
  margin-bottom: 15px;
  padding-left: 5px;
}

.list-item {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
  transition: transform 0.2s;
  cursor: pointer;
}

.list-item:hover {
  transform: translateX(3px);
  border-color: #e0e0e0;
}

.grade-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eee;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-right: 15px;
  flex-shrink: 0;
}

.list-item-info {
  flex-grow: 1;
}

.list-item-info strong {
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
}

.list-item-info span {
  font-size: 12px;
  color: #888;
}

.delete-tick-btn {
  background: none;
  border: none;
  color: #e0e0e0;
  cursor: pointer;
  padding: 10px;
  font-size: 20px;
  line-height: 1;
  transition: color 0.2s;
}

.delete-tick-btn:hover {
  color: #ff4d4d;
}

@media (max-width: 480px) {
  .profile-hero {
    flex-direction: column;
    text-align: center;
  }
  .logout-icon-btn {
    position: absolute;
    top: 20px;
    right: 20px;
  }
}