@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700;800&display=swap");
.project-voting {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: "Sora", sans-serif !important;
  font-size: 15px;
}
.project-voting .text-primary {
  color: #7c3aed;
}
.project-voting-wrap {
  background-color: #f9fafb;
}
.project-voting .header-banner {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  gap: 1rem;
}
@media (max-width: 768px) {
  .project-voting .header-banner {
    flex-direction: column;
    text-align: center;
  }
}
.project-voting .header-banner .banner-image {
  width: 25%;
  aspect-ratio: 21/9;
}
@media (max-width: 768px) {
  .project-voting .header-banner .banner-image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.project-voting .header-banner .banner-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.project-voting .header-banner .banner-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}
@media (max-width: 768px) {
  .project-voting .header-banner .banner-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 0;
  }
}
.project-voting .header-banner .banner-content-titles {
  flex: 2;
}
@media (max-width: 768px) {
  .project-voting .header-banner .banner-content-titles {
    width: 100%;
  }
}
.project-voting .header-banner .banner-content-voting {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  border-left: 1px solid #f1f1f1;
  padding: 0 1rem;
}
.project-voting .header-banner .banner-content-voting .voting-status {
  color: #666;
  font-size: 0.8rem;
}
.project-voting .header-banner .banner-content-voting .countdown-display {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .project-voting .header-banner .banner-content-voting {
    border-left: none;
    border-top: 1px solid #f1f1f1;
    padding-top: 1rem;
    width: 100%;
  }
}
.project-voting .header-banner .banner-content .event-organizer {
  font-weight: 400;
  color: #7c3aed;
  margin-bottom: 0.25rem;
}
.project-voting .header-banner .banner-content .event-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  line-height: 125%;
}
@media (max-width: 768px) {
  .project-voting .header-banner .banner-content .event-title {
    font-size: 2rem;
  }
}
.project-voting .header-banner .banner-content .voting-deadline {
  font-weight: 400;
  color: #6b7280;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .project-voting .header-banner .banner-content .voting-deadline {
    justify-content: center;
  }
}
.project-voting .header-banner .banner-content .voting-deadline .icon {
  margin-right: 0.5rem;
  display: inline-flex;
  align-items: center;
}
.project-voting .header-banner .banner-content .voting-deadline .icon svg {
  width: 16px;
  height: 16px;
  color: #6b7280;
}
.project-voting .countdown-display-timer {
  display: flex;
  justify-content: center;
}
.project-voting .countdown-display-timer div {
  text-align: center;
  flex: 1;
}
.project-voting .countdown-display-timer h4 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
}
.project-voting .countdown-display-timer span {
  color: #666;
  font-size: 0.7rem;
}
.project-voting .main-content .title-section {
  margin-bottom: 2rem;
}
.project-voting .main-content .title-section .main-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}
.project-voting .main-content .title-section .description {
  color: #6b7280;
  font-size: 1rem;
  font-weight: 400;
}
.project-voting .main-content .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .project-voting .main-content .projects-grid {
    grid-template-columns: 1fr;
  }
}
.project-voting .main-content .project-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.project-voting .main-content .project-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.project-voting .main-content .project-card .project-image {
  background-color: #f3f4f6;
  overflow: hidden;
  aspect-ratio: 21/9;
  width: 100%;
  height: auto;
}
.project-voting .main-content .project-card .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-voting .main-content .project-card .project-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.project-voting .main-content .project-card .project-content .project-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.75rem 0;
  flex: 1;
  line-height: 150%;
}
.project-voting .main-content .project-card .project-content .project-title-wrap {
  display: flex;
  align-items: flex-start;
}
.project-voting .main-content .project-card .project-content .project-title-votes {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
  justify-content: center;
  padding: 8px 8px;
  border-radius: 4px;
  background: #f1e9ff;
}
.project-voting .main-content .project-card .project-content .project-title-votes h4 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 500;
  color: #6a3db7;
}
.project-voting .main-content .project-card .project-content .project-title-votes small {
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6rem;
}
.project-voting .main-content .project-card .project-content .project-description {
  font-weight: 400;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex: 1;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay .modal-content {
  background: white;
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  font-family: "Sora", sans-serif;
}
@media (max-width: 768px) {
  .modal-overlay .modal-content {
    max-width: 95%;
    max-height: 95vh;
  }
}
.modal-overlay .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .modal-overlay .modal-header {
    padding: 1rem 1.5rem;
  }
}
.modal-overlay .modal-header .modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
@media (max-width: 768px) {
  .modal-overlay .modal-header .modal-title {
    font-size: 1.25rem;
  }
}
.modal-overlay .modal-header .modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.modal-overlay .modal-header .modal-close:hover {
  background-color: #f3f4f6;
  color: #374151;
}
.modal-overlay .modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-top: 1px solid #e5e7eb;
  flex-shrink: 0;
}
.modal-overlay .modal-footer-actions {
  display: flex;
  align-items: center;
}
.modal-overlay .modal-footer .count {
  font-weight: 500;
  flex: 1;
  margin-left: 0.5rem;
  color: #6a3db7;
}
.modal-overlay .modal-banner {
  flex-shrink: 0;
  height: 200px;
  overflow: hidden;
  background-color: #f3f4f6;
}
@media (max-width: 768px) {
  .modal-overlay .modal-banner {
    height: 150px;
  }
}
.modal-overlay .modal-banner .banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 21/9;
}
.modal-overlay .modal-body {
  overflow-y: auto;
  flex: 1;
}
.modal-overlay .modal-body-content {
  padding: 1rem 2rem 2rem 2rem;
}
@media (max-width: 768px) {
  .modal-overlay .modal-body-content {
    padding: 1.5rem;
  }
}
.modal-overlay .modal-body .modal-description {
  margin-bottom: 2rem;
}
.modal-overlay .modal-body .modal-description p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}
.modal-overlay .modal-body .modal-section {
  margin-bottom: 2rem;
}
.modal-overlay .modal-body .modal-section:last-child {
  margin-bottom: 0;
}
.modal-overlay .modal-body .modal-section .section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}
.modal-overlay .modal-body .modal-section .team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.modal-overlay .modal-body .modal-section .team-members .team-member {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.modal-overlay .modal-body .modal-section .team-members .team-member:has(.team-member-item) {
  gap: 1.5rem;
}
.modal-overlay .modal-body .modal-section .team-members .team-member-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.modal-overlay .modal-body .modal-section .team-members .team-member .member-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f3f4f6;
}
.modal-overlay .modal-body .modal-section .team-members .team-member .member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-overlay .modal-body .modal-section .team-members .team-member .member-info {
  display: flex;
  flex-direction: column;
}
.modal-overlay .modal-body .modal-section .team-members .team-member .member-info .member-name {
  font-weight: 500;
  color: #111827;
  margin-bottom: 0.5rem;
}
.modal-overlay .modal-body .modal-section .team-members .team-member .member-info .member-role {
  font-size: 0.75rem;
  color: #6b7280;
}
.modal-overlay .modal-body .modal-section .description-content .problem-solution {
  margin-bottom: 1.5rem;
}
.modal-overlay .modal-body .modal-section .description-content .problem-solution:last-child {
  margin-bottom: 0;
}
.modal-overlay .modal-body .modal-section .description-content .problem-solution h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}
.modal-overlay .modal-body .modal-section .description-content .problem-solution p {
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}
.modal-overlay .modal-body .modal-section .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.modal-overlay .modal-body .modal-section .features-list li {
  color: #6b7280;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
  position: relative;
  padding-left: 1.5rem;
}
.modal-overlay .modal-body .modal-section .features-list li:before {
  content: "•";
  color: #7c3aed;
  font-weight: bold;
  position: absolute;
  left: 0;
}
.modal-overlay .modal-body .modal-section .features-list li:last-child {
  border-bottom: none;
}
.modal-overlay .modal-body .modal-section .demo-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.modal-overlay .modal-body .modal-section .demo-links li {
  color: #6b7280;
  margin-bottom: 0.5rem;
}
.modal-overlay .modal-body .modal-section .demo-links li:last-child {
  margin-bottom: 0;
}
.modal-overlay .modal-body .modal-section .demo-links li strong {
  color: #111827;
  font-weight: 600;
}
.modal-overlay .modal-body .modal-section .demo-links li a {
  color: #7c3aed;
  text-decoration: none;
}
.modal-overlay .modal-body .modal-section .demo-links li a:hover {
  text-decoration: underline;
}
.modal-overlay .modal-body .modal-section .attachments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.modal-overlay .modal-body .modal-section .attachments-list .attachment-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background-color: #f9fafb;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.modal-overlay .modal-body .modal-section .attachments-list .attachment-item:hover {
  background-color: #f3f4f6;
  border-color: #d1d5db;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.modal-overlay .modal-body .modal-section .attachments-list .attachment-item .attachment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}
.modal-overlay .modal-body .modal-section .attachments-list .attachment-item .attachment-icon svg {
  width: 20px;
  height: 20px;
}
.modal-overlay .modal-body .modal-section .attachments-list .attachment-item .attachment-name {
  color: #374151;
  font-weight: 500;
}
.modal-overlay .modal-body .modal-section p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.text-danger {
  color: rgb(214, 47, 47) !important;
}

.text-success {
  color: rgb(49, 155, 93) !important;
}

.action-buttons {
  display: flex;
  gap: 0.5rem;
}
.action-buttons .btn {
  font-family: inherit;
  flex: 1;
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  height: 42px;
}
.action-buttons .btn.btn-outline {
  color: #7c3aed;
  border: 1px solid #c3c3c3;
  background: transparent;
}
.action-buttons .btn.btn-outline:hover {
  background-color: #7c3aed;
  color: white;
}
.action-buttons .btn.btn-primary {
  background-color: #7c3aed;
  color: white;
}
.action-buttons .btn.btn-primary:hover {
  background-color: #6d28d9;
}
.action-buttons .btn.btn-primary.login-required {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.action-buttons .btn.btn-primary.login-required svg {
  width: 16px;
  height: 16px;
}
.action-buttons .btn.btn-success {
  background-color: #10b981;
  color: white;
}
.action-buttons .btn.btn-success:hover {
  background-color: #059669;
}
.action-buttons .btn.btn-voted {
  background-color: #10b981;
  color: white;
  cursor: default;
}
.action-buttons .btn.btn-voted:hover {
  background-color: #10b981;
}

/*# sourceMappingURL=projectvoting.css.map */
