/* Base styles with defaults */
:root {
  --default-color: #808080; /* Fallback color */
  --profile-color: var(--default-color);
  --theme-color: #2d7367;
}
/* Add the themed loader styles */
.loader {
  width: 30px;
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0 auto;
  margin-top: 50%;
  animation: l5 1s infinite linear alternate;
}
@keyframes l5 {
    0%  {box-shadow: 40px 0 #2d7367, -40px 0 #2d736733; background: #2d7367; }
    33% {box-shadow: 40px 0 #2d7367, -40px 0 #2d736733; background: #2d736733; }
    66% {box-shadow: 40px 0 #2d736733, -40px 0 #2d7367; background: #2d736733; }
    100%{box-shadow: 40px 0 #2d736733, -40px 0 #2d7367; background: #2d7367; }
}

[data-profile-type].text, [data-profile-type] .text {
}

section#announcements comment-post,
#add-comment-popover comment-post{
  background: #f4e38b;
}
.profile-image {
  background-color: var(--profile-color);
}
@media (max-width: 330px){
  .profile-list role-pill {
    position: absolute;
    top: -6px;
    right: -8px;
    padding: 1px 5px;
  }
}
.flip-card .top {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background: var(--theme-color);
  border-radius: 4px;
  position: absolute;
  backface-visibility: hidden;
}

.flip-card.time-remaining .top {
  background: white;
  border: 1.5px solid var(--theme-color);
  color: var(--theme-color);
}

/* Dynamic Profile Type Styles */
[data-profile-type="Cowboy Hotline"] {
  --profile-color: #923926;
}

profile-name-header[data-profile-type="Cowboy Hotline"] {
  color: #923926;
}

role-pill[data-profile-type="Cowboy Hotline"] {
  color: #923926;
  border: 1.5px solid #923926;
}
[data-profile-type="Speaker"] {
  --profile-color: #3498db;
}

profile-name-header[data-profile-type="Speaker"] {
  color: #3498db;
}

role-pill[data-profile-type="Speaker"] {
  color: #3498db;
  border: 1.5px solid #3498db;
}
[data-profile-type="Organizer"] {
  --profile-color: #2d7367;
}

profile-name-header[data-profile-type="Organizer"] {
  color: #2d7367;
}

role-pill[data-profile-type="Organizer"] {
  color: #2d7367;
  border: 1.5px solid #2d7367;
}
[data-profile-type="Attendee"] {
  --profile-color: #008e00;
}

profile-name-header[data-profile-type="Attendee"] {
  color: #008e00;
}

role-pill[data-profile-type="Attendee"] {
  color: #008e00;
  border: 1.5px solid #008e00;
}
[data-profile-type="Cowboy Maximum Security"] {
  --profile-color: #000000;
}

profile-name-header[data-profile-type="Cowboy Maximum Security"] {
  color: #000000;
}

role-pill[data-profile-type="Cowboy Maximum Security"] {
  color: #000000;
  border: 1.5px solid #000000;
}
.ticketed_events_element{
  display: none !important;
}
