@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;600;700;800&display=swap');
@import 'styles/guide.css';

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-sans);
}

body {

}

.body-container {
    display: flex;
    justify-content: center;
    padding-top: 56px;
    padding-bottom: 56px;
}

@media (min-width: 1024px) {
    .body-container {
        padding-top: 120px;
    }
}

.background-gradient {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.02) 100%), linear-gradient(95deg, #FEF5F4 14.51%, #E8EAEF 103.25%);
    background-size: cover;
    min-height: 100vh;
}

.background-colors {
  background: #F9FAFB;
  background: linear-gradient(180deg, rgba(249, 250, 251, 1) 0%, rgba(237, 243, 254, 1) 100%);
  background-size: cover;
  min-height: 100vh;
}

.background-solid {
    background-color: #F4F6F8;
}

.login-box {
    display: flex;
    width: 408px;
    padding: 32px 28px 36px;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    border: 1px solid rgba(19, 21, 23, 0.06);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.56) 6.76%, rgba(255, 255, 255, 0.80) 40.71%);
    box-shadow: 2px 2px 64px -1px rgba(22, 22, 41, 0.08);
    margin-top: 25%;
}

h2 {
    text-align: center;
    color: var(--indigo-700);
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
}

.input-group {
    margin-bottom: var(--spacing-6);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    padding-bottom: 4px;
}


.login-input {
    width: 100%;
    padding: var(--spacing-3);
    border: 1px solid var(--gray-200, #E5E7EB);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    transition: border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    color: var(--gray-800);
    font-family: "Inter";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.45px;
}


select.login-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: var(--white, #FFF) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%234A5565' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
    height: 56px;
    font-family: "Inter";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.45px;
    display: flex;
padding: 18px 18px 18px 16px;
justify-content: space-between;
align-items: center;
align-self: stretch;
border: 1px solid #EEEBEE;
color: var(--gray-600, #4A5565);
}

select.login-input:hover {
    background: #F3F4F6;
    border-color: #D1D5DB;
    
}

select.login-input:focus {
    border-color: var(--gray-600, #4A5565);
    outline: none;
    box-shadow: 0 0 0 2px var(--gray-100, #F3F4F6);
}

select.login-input option {
    padding: 12px;
    font-family: "SF Pro";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.45px;
    color: var(--gray-600, #4A5565);
}

input:focus {
    outline: none;
    border: 1px solid var(--gray-400, #6A7282);
}

input[type="password"] {
    -webkit-text-security: disc;
    text-security: disc;
}

button {
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    color: #FDFBF9;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 16px;
    letter-spacing: -0.0px;  

}

.login-label {
  display: block;
  margin-bottom: var(--spacing-1);
  color: var(--gray-500, #6A7282);
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.32px;
}


.login-btn {
    width: 100%;
    background: var(--gray-950, #030712);
    padding: 18px 14px;
}

.login-btn:hover {
  background:rgba(51, 53, 55, 1);
}

.message {
    text-align: center;
    margin-top: var(--spacing-5);
    font-size: var(--text-sm);

    color: var(--gray-700, #364153);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.3px;
    opacity: 0.8;
}

.message a {
    color: var(--indigo-500);
    text-decoration: none;
    font-size: var(--text-sm);
}

.message a:hover {
    text-decoration: underline;
}

.logo {
    text-align: center;
}

.logo-img {
    width: 64px;
    height: 28px;
    object-fit: contain;
}

.logo-img-sm {
    display: none;
}

.color-logo {
  opacity: 1;
}

.subtitle {
    color: var(--gray-500, #4A5565);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.3px;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    padding: 4px 0px;
}

.button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    padding-top: 12px;
}

.error-message {
    color: #F98080;
    font-size: 14px;
    margin-top: 4px;
    margin-bottom: 4px;
    text-align: left;
    display: none;
}

@keyframes shake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(-8px); }
    80% { transform: translateX(8px); }
    100% { transform: translateX(0); }
}

.shake {
    animation: shake 0.4s;
}

.fixed-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 5%;
    color: var(--gray-900);
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.3px;
    z-index: 100;
    pointer-events: none;
    opacity: 0.4;
}

.logout-btn {
    margin: 24px auto 0 auto;
    display: block;
    width: 100%;
    max-width: 200px;
    padding: 12px 0;
    background: #262626;
    color: #FDFBF9;
    border: none;
    border-radius: 8px;
    font-family: Inter;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.logout-btn:hover {
    background: var(--gray-700);
}

.dashboard-layout {
    display: flex;
    min-height: 100vh;
}

.dashboard-main {
    flex: 1;
    padding: 20px 32px;
    background: var(--gray-50, #F9FAFB);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 1px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dashboard-title-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.dashboard-title {
    color: var(--gray-900, #101828);
    font-family: 'DM Serif Text', serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.8px;
    text-align: left;
}

.rsvp-header-text {
  display: flex;
flex-direction: column;
align-items: flex-start;
gap: 4px;
align-self: stretch;
}

.rsvp-title {
  color: #434650;
font-family: "Inter";
font-size: 17px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: -0.51px;
  text-align: left;
}

.rsvp-subtitle {
  color: #808491;
font-family: "Inter";
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: -0.45px;
}

.rsvp-label{
  display: block;
  color: #434650;
font-family: "Inter";
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: -0.45px;
}

.input-label {
  color: #434650;
font-family: "Inter";
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: -0.45px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dashboard-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(22,22,41,0.06);
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    font-size: 15px;
    color: var(--gray-600, #2d3748);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.dashboard-card.expanded {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.dashboard-card.disabled {
    opacity: 0.9;
    cursor: default;
    pointer-events: none;
    box-shadow: 2px 2px 64px -1px rgba(22, 22, 41, 0.02);
}

.dashboard-card.disabled:hover {
    transform: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-family {
    color: var(--gray-900, #101828);
    font-family: "DM Serif Text";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.card-id {
    font-size: 14px;
    color: var(--gray-500, #6b7280);
}

.card-names {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.card-details {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    gap: 12px;
}

.dashboard-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(22,22,41,0.06);
    padding: 20px 18px;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Inter;
    font-size: 15px;
    color: var(--gray-800, #2d3748);
}

.dashboard-table th, .dashboard-table td {
    padding: 10px 12px;
    text-align: left;
}

.dashboard-table th {
    color: var(--gray-700, #364153);
    font-weight: 600;
}

.dashboard-table tr:nth-child(even) {
    background: var(--gray-50, #f9fafb);
}

.dashboard-search-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    padding-bottom: 20px;
    gap: 24px;
}

.dashboard-search {
    position: relative;
    width: 100%;
    max-width: 400px;
    gap: 24px;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.search-input {
    width: 100%;
    display: flex;
    padding: 12px;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid var(--gray-100, #F3F4F6);
    background: rgba(255, 255, 255, 0.60);
    font-size: 15px;
    color: var(--gray-800, #101828);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.search-input::placeholder {
    color: var(--gray-400, #99A1AF);
}

.search-input:focus {
    border-color: var(--indigo-600, #4f46e5);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.11);
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 24px;
    transform: translateY(-50%);
    color: var(--gray-400, #99A1AF);
}

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.hide-mobile { display: initial; }

@media (max-width: 600px) {
    .hide-mobile { display: none !important; }
    .dashboard-layout { flex-direction: column; }
    .dashboard-main {
        padding: 12px 14px;
        width: 100%;
    }
    .dashboard-cards { grid-template-columns: 1fr; }
    .login-box {
        width: 90vw;
        min-width: 0;
        max-width: 95vw;
        padding-left: 5vw;
        padding-right: 5vw;
    }
}

@media (min-width: 1400px) {
    .dashboard-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1600px) {
    .dashboard-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 2000px) {
    .dashboard-cards { grid-template-columns: repeat(4, 1fr); }
}

.dashboard-tabs {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-200, #e5e7eb);
  padding-left: 8px;
}
.tab-btn {
  color: var(--gray-400, #364153);
  font-family: Inter;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px 8px 0 0;
  padding: 12px 0px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.tab-btn.active, .tab-btn:hover {
  color: var(--gray-900, #4f46e5);
}
.tab-count {
  margin-left: 4px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  vertical-align: center;
  background-color: #101828;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 2px;
  padding-bottom: 2px;
  background-color: var(--gray-200, #FDFBF9);
}
.dashboard-tab-content {
  width: 100%;
}

.guest-name {
  display: flex;
  flex-direction: row;
  gap: 2px;
  align-items: center;
  position: relative;
}

.guest-name:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5px;
  height: 14px;
  background-color: var(--gray-300, #E5E7EB);
  margin: 0 12px !important;
}

.guest-count {
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
    vertical-align: center;
    background-color: #101828;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 2px;
    padding-bottom: 2px;
    background-color: var(--gray-200, #FDFBF9);
    margin-left: 0px !important;
}

.family-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 400;
  vertical-align: middle;
}
.badge-yes {
  background: var(--green-50, #f0fdf4);
  color: var(--green-600, #16a34a);
}
.badge-no {
  background: var(--gray-100, #f3f4f6);
  color: var(--gray-400, #9ca3af);
}
.badge-not-attending {
  background: var(--red-50, #fef2f2);
  color: var(--red-600, #dc2626);
}

.detail-line {
  margin-bottom: 0px;
  display: flex;
  gap: 4px;

}

.guest-status {
  display: inline-flex;
  vertical-align: middle;
  margin-left: 2px;
}
.guest-yes svg {
  color: var(--green-400, #4ade80);
}
.guest-no svg {
  color: var(--gray-300, #d1d5db);
}

.whatsapp-link {
  color: var(--indigo-600, #16a34a);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.whatsapp-link:hover {
  text-decoration: underline;
}

.rsvp-footer {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  backdrop-filter: blur(8px);
  position: relative;
    height: 100px;
    margin-top: -100px;
    clear: both;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-logo {
  height: 24px;
  width: auto;
}

.footer-text {
  color: var(--gray-400, #4B5563);
  font-size: 14px;
  font-weight: 400;
}

.sidebar {
  min-width: 200px;
  background-color: rgba(255, 255, 255, 0.7);
  border-right: 1px solid var(--gray-200, #e5e7eb);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 0 16px 0;
  justify-content: space-between;
}
.sidebar-logo {
  margin-bottom: 32px;
  margin-left: 24px;
}
.sidebar-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  align-items: center;
  margin-left: 24px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  text-align: left;
  padding-left: 24px;
  color: var(--gray-400, #364153);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 0;
  width: 100%;
  border-radius: 6px;
  transition: background 0.2s;
}
.sidebar-link.active, .sidebar-link:hover {
  color: var(--gray-800);
}
.sidebar-logout {
  margin-top: 32px;
  width: 80%;
}
.sidebar-icon {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.sidebar-link svg {
  width: 20px;
  height: 20px;
  color: inherit;
  flex-shrink: 0;
}

.sidebar-bottom {
    margin-left: 24px;
    color: var(--gray-400, #364153);
}

.filter-label {
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-500, #101828);
}

.rsvp-container{
    display: flex;
    max-width: 480px;
    width: 100%;
    padding: 24px 20px;
    flex-direction: column;
    gap: 24px;
    border-radius: 24px;
    background: rgba(255, 253, 255, 0.80);
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.02);

  }

  @media (max-width: 600px) {
    .rsvp-container {
      width: 100%;
      padding: 20px 16px;
      margin-top: 12px;
      margin-left: 12px;
      margin-right: 12px;
    }
  }

  .action-btn {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    height: 40px;
    border-radius: 99px;
    background: var(--white, #FFF);
    backdrop-filter: blur(2px);
    border: 1px solid var(--gray-200, #E5E7EB);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    font-size: 15px;
    font-family: Inter;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    color: var(--gray-600, #101828);
    align-self: center;
  }

  .action-btn:hover {
    background: var(--gray-100, #F9FAFB);
  }

@media (max-width: 900px) {
  .sidebar {
    min-width: 68px;
    padding: 16px 0;
  }

  .sidebar-logo {
    margin-left: 20px;
  }

  .sidebar-logo img {
    width: 32px;
    height: 32px;
  }
  .sidebar-link {
    font-size: 0;
    padding: 8px 0;
  }
  .logo-img {
    display: none !important;
  }
  .logo-img-sm {
    display: block !important;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .sidebar {
    flex-direction: row;
    width: 100%;
    height: 56px;
    border-right: none;
    border-bottom: 1px solid var(--gray-200, #e5e7eb);
    align-items: center;
    justify-content: space-between;
    padding: 0 0px 0px 0px;
  }
  .dashboard-main {
    padding: 12px 14px;
    width: 100%;
  }
  .dashboard-cards {
    grid-template-columns: 1fr;
  }
  .login-box {
    width: 90vw;
    min-width: 0;
    max-width: 95vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .sidebar-logo {
    margin: 0;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 56px;
  }
  .sidebar-nav {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-left: 24px !important;
  }
  .sidebar-link {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    width: 40px;
  }
  .sidebar-bottom {
    width: 100%;
    max-width: 40px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    margin-right: 8px;
  }
  .sidebar-logo img {
    margin: 0 auto;
    display: block;
    align-self: center;
  }
  .logo-img {
    display: none !important;
  }
  .logo-img-sm {
    display: block !important;
    width: 32px;
    height: 32px;
  }
  .action-btn span,
  .action-btn-text {
    display: none !important;
  }
  .action-btn svg {
    display: inline-block !important;
  }
}

.dashboard-tabs {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-200, #e5e7eb);
  padding-left: 8px;
}
.tab-btn {
  color: var(--gray-400, #364153);
  font-family: Inter;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px 8px 0 0;
  padding: 12px 0px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.tab-btn.active, .tab-btn:hover {
  color: var(--gray-900, #4f46e5);
}
.tab-count {
  margin-left: 4px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  vertical-align: center;
  background-color: #101828;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 2px;
  padding-bottom: 2px;
  background-color: var(--gray-200, #FDFBF9);
}
.dashboard-tab-content {
  width: 100%;
}

.dashboard-filter-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: var(--white, #FFF);
  border: 1px solid var(--gray-200, #E5E7EB);
  border-radius: 99px;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 8px 16px;
  font-size: 15px;
  font-family: Inter;
  font-weight: 500;
  color: var(--gray-600, #101828);
  cursor: pointer;
  height: 40px;
  outline: none;
  transition: border 0.2s;
}
.dashboard-filter-select:focus {
  border-color: var(--indigo-600, #4f46e5);
}

.dropdown-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: 12x;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 8px 20px 8px 16px;
  font-size: 15px;
  font-family: Inter;
  font-weight: 500;
  color: var(--gray-600, #101828);
  cursor: pointer;
  height: 40px;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
  position: relative;
}
.dropdown-btn:focus, .dropdown-btn:hover {
  border-color: var(--indigo-600, #4f46e5);
  background-color: var(--gray-100, #D1D5DB);
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.08);
}
.dropdown-chevron {
  margin-left: 4px;
  color: var(--gray-400, #99A1AF);
}
.dropdown-menu {
  position: absolute;
  top: 110%;
  right: 0;
  min-width: 160px;
  background: #fff;
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(16,24,40,0.08);
  z-index: 10;
  padding: 4px 0;
  list-style: none;
}
.dropdown-menu li {
  padding: 8px 20px;
  font-size: 15px;
  color: var(--gray-700, #364153);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu li:hover {
  background: var(--gray-100, #f3f4f6);
  color: var(--indigo-600, #4f46e5);
}
.dashboard-filter {
  position: relative;
}

.dashboard-search-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    padding-bottom: 20px;
    gap: 16px;
}

.dashboard-filter-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: var(--white, #FFF);
  border: 1px solid var(--gray-200, #E5E7EB);
  border-radius: 99px;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 8px 16px;
  font-size: 15px;
  font-family: Inter;
  font-weight: 500;
  color: var(--gray-600, #101828);
  cursor: pointer;
  height: 40px;
  outline: none;
  transition: border 0.2s;
}
.dashboard-filter-select:focus {
  border-color: var(--indigo-600, #4f46e5);
}

.dropdown-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: 12x;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 8px 20px 8px 16px;
  font-size: 15px;
  font-family: Inter;
  font-weight: 500;
  color: var(--gray-600, #101828);
  cursor: pointer;
  height: 40px;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
  position: relative;
}
.dropdown-btn:focus, .dropdown-btn:hover {
  border-color: var(--indigo-600, #4f46e5);
  background-color: var(--gray-100, #D1D5DB);
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.08);
}
.dropdown-chevron {
  margin-left: 4px;
  color: var(--gray-400, #99A1AF);
}
.dropdown-menu {
  position: absolute;
  top: 110%;
  right: 0;
  min-width: 160px;
  background: #fff;
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(16,24,40,0.08);
  z-index: 10;
  padding: 4px 0;
  list-style: none;
}
.dropdown-menu li {
  padding: 8px 20px;
  font-size: 15px;
  color: var(--gray-700, #364153);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu li:hover {
  background: var(--gray-100, #f3f4f6);
  color: var(--indigo-600, #4f46e5);
}
.dashboard-filter {
  position: relative;
}

.sidebar-bottom {
    margin-left: 24px;
    color: var(--gray-400, #364153);
}
  

.text-left {
  text-align: left;
}   

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.hide-mobile {
  display: initial;
}
@media (max-width: 600px) {
  .hide-mobile {
    display: none !important;
  }
}

.guest-status {
  display: inline-flex;
  vertical-align: middle;
  margin-left: 2px;
}
.guest-yes svg {
  color: var(--green-400, #4ade80);
}
.guest-no svg {
  color: var(--red-500, #ef4444);
}

.family-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 400;
  vertical-align: middle;
}
.badge-yes {
  background: var(--green-50, #f0fdf4);
  color: var(--green-600, #16a34a);
}
.badge-no {
  background: var(--gray-100, #f3f4f6);
  color: var(--gray-400, #9ca3af);
}

.detail-line {
  margin-bottom: 0px;
  display: flex;
  gap: 4px;

}

.dashboard-search {
  position: relative;
  width: 100%;
  max-width: 400px;
  gap: 24px;
  display: flex;
justify-content: space-between;
align-items: start;
}

.search-input {
    width: 100%;
    display: flex;
padding: 12px;
align-items: center;
gap: 8px;

border-radius: 8px;
border: 1px solid var(--gray-100, #F3F4F6);
background: rgba(255, 255, 255, 0.60);

font-size: 15px;
color: var(--gray-800, #101828);
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);

}

.search-input::placeholder {
  color: var(--gray-400, #99A1AF);
}

.search-input:focus {
  border-color: var(--indigo-600, #4f46e5);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.11);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 24px;
  transform: translateY(-50%);
  color: var(--gray-400, #99A1AF);
}

@media (min-width: 1400px) {
  .dashboard-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1600px) {
    .dashboard-cards {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (min-width: 2000px) {
    .dashboard-cards {
      grid-template-columns: repeat(4, 1fr);
    }
  }

.filter-label {
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-500, #101828);
}

/* Disabled card styles */
.dashboard-card.disabled {
  opacity: 0.9;
  cursor: default;
  pointer-events: none;
  box-shadow: 2px 2px 64px -1px rgba(22, 22, 41, 0.02);
}

.dashboard-card.disabled:hover {
  transform: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dashboard-card.disabled .card-header {
  cursor: default;
}

.whatsapp-link {
  color: var(--indigo-600, #16a34a);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.whatsapp-link:hover {
  text-decoration: underline;
}

.rsvp-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  backdrop-filter: blur(8px);
  z-index: 1000;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  opacity: 0.4;
}

.footer-logo {
  height: 20px;
  width: auto;
}

.footer-text {
  color: var(--gray-700, #4B5563);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.2px;
}

/* Header */
.rsvp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 14px 4px 0px 16px;
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.rsvp-header-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}


.font-header {

font-family: "SF Pro";
font-size: 15px;
font-style: normal;
font-weight: 510;
line-height: normal;
letter-spacing: -0.45px;
}


.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo {
    height: 24px;
    width: auto;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(105, 99, 103, 0.50);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.back-button:hover {
  color: rgba(105, 99, 103, 0.80);
}

.back-button svg {
    width: 20px;
    height: 20px;
}

/* Custom checkbox styles */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  margin-right: 8px;
  vertical-align: middle;
}

input[type="checkbox"]:checked {
  background-color: var(--indigo-600);
  border-color: var(--indigo-600);
}

input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

input[type="checkbox"]:hover {
  border-color: var(--indigo-600);
}

input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--indigo-100);
}

.guest-checkbox, .service-checkbox {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.guest-checkbox:hover, .service-checkbox:hover {
  background-color: var(--gray-50);
}

input::placeholder {
  color: #a4b2bc;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.3px;
}

/* Verification code input styles */
.verification-code-inputs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 2px 0;
}

.verification-input {
  width: 53px !important;
  height: 57px !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  text-align: center !important;
  color: rgba(62, 61, 75, 1);
  transition: all 0.2s ease !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 8px;
  border: 1px solid rgba(238, 235, 238, 0.90);
  background: #FFF;
}

.verification-input:focus {
  border-color: var(--gray-600) !important;
  box-shadow: 0 0 0 2px var(--gray-100) !important;
  outline: none !important;
  color: var(--gray-900) !important;
}

.verification-input:hover {
  border-color: var(--gray-300) !important;
}

.verification-input::placeholder {
  color: var(--gray-300) !important;
}

/* Hide number input spinners */
.verification-input::-webkit-outer-spin-button,
.verification-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.verification-input[type=number] {
  -moz-appearance: textfield;
}

.dashboard-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.expand-all-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: 12x;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 8px 12px 8px 12px;
  font-size: 15px;
  font-family: Inter;
  font-weight: 500;
  color: var(--gray-600, #101828);
  cursor: pointer;
  height: 40px;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
  position: relative;
}

.expand-all-btn:hover {
  background-color: var(--gray-100, #F9FAFB);
}

.expand-all-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.expand-all-btn.active {
  background-color: var(--indigo-500, #4f46e5);
  color: white;
  border-color: var(--indigo-400, #4f46e5);
}

.card-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: left;
  gap: 4px;
  font-size: 14px;
}

.rsvp-container {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.rsvp-container.hidden {
  opacity: 0;
  transform: translateY(20px);
}

.rsvp-header-container svg {
  transition: transform 0.5s ease;
}

.rsvp-header-container svg.animate {
  transform: scale(1.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

.guest-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-self: stretch;
}

.guest-checkbox {
  display: flex;
  padding: 0px 16px;
  height: 56px;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.2s ease;

  border-radius: 8px;
  border: 1px solid rgba(235, 235, 235, 0.90);
  background: #FFF;

  color: var(--gray-600, #4A5565);
font-family: "SF Pro";
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: -0.45px;
}

.guest-checkbox:hover {
  background: #F3F4F6;
  border-color: #D1D5DB;
}

.guest-checkbox input[type="checkbox"],
.guest-checkbox input[type="radio"] {
  position: relative;
  margin: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: all 0.2s ease;

  padding: 0 !important;

  display: flex;
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;

  border-radius: 6px;
  border: 1.5px solid #ECECEC;
  background: #FFF;
}

.guest-checkbox input[type="checkbox"]:checked,
.guest-checkbox input[type="radio"]:checked {
  background: var(--gray-950, #030712);
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.04);
}

.guest-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 3px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.guest-checkbox input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.guest-checkbox input[type="checkbox"]:hover,
.guest-checkbox input[type="radio"]:hover {
  border-color: #D1D5DB;
}

.guest-checkbox input[type="checkbox"]:focus,
.guest-checkbox input[type="radio"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--gray-100, #F3F4F6);
}

.guest-checkbox label {
  flex: 1;
  margin: 0;
  cursor: pointer;
  font-size: 16px;
  color: #374151;
}

textarea.login-input {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #EEEBEE;
  background: #FFF;
} 

textarea.login-input:hover {
  background: #F3F4F6;
  border-color: #D1D5DB;
}

textarea.login-input:focus {
  border-color: var(--gray-600, #4A5565);
  outline: none;
  box-shadow: 0 0 0 2px var(--gray-100, #F3F4F6);
}

textarea.login-input::placeholder {
  color: var(--gray-400, #9CA3AF);
}


.guest-radio {
  border-radius: 999px !important;
}

.confirmation-details {
  margin-top: 4px;
  color: var(--gray-600, #4A5565);
  font-family: "Inter";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.45px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
  margin-bottom: 0px;
  align-self: stretch;
}

.confirmation-section {
  margin-bottom: 0px;
  color: var(--gray-700, #364153);
  font-weight: 500;
  margin-top: 10px;
}

.confirmation-list {
  list-style: none;
  margin-top: 0px;
  padding: 0;
}

.confirmation-list li {
  margin-top: 6px;
}

.confirmation-list li:last-child {
  border-bottom: none;
}

.gift-registry-btn {
  padding: 12px 24px;
  border-radius: 16px;
  border: 1px solid rgba(235, 235, 235, 0.80);
  background: #EDEDED;
  color: #141115;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  width: 100%;
  display: flex;
  padding: 18px 14px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.gift-registry-btn:hover {
  background: #E5E5E5;
  transform: translateY(-1px);
}

/* Settings Page Styles */
.settings-container {
  width: 100%;
  margin: 0;
}

.settings-section {
  background: white;
  border-radius: 12px;
  padding: 1rem 1.5rem 1rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.settings-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.settings-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.settings-item:last-child {
  border-bottom: none;
}

.settings-item-content {
  flex: 1;
}

.settings-item-title {
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.settings-item-description {
  font-size: 0.875rem;
  color: #6b7280;
  text-align: left !important;
}

/* Switch Styles */
.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e5e7eb;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2563eb;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2563eb;
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}