.promoters-dashboard {
    filter: drop-shadow(0px 0px 4px #ccc);
}
.custom-logo {
    width: 100px;
    display: block;
}
.promoter-dp {
    position: relative;
    display: inline-block;
    text-align: center;
}

.dashboard {
    display: flex;
    min-height: 100vh;
    overflow: hidden;
    border-radius: 20px;
}
.site-logo, .promoters-profile {
    text-align: -webkit-center;
}

  .dashboard-tabs {
    width: 260px;
    background: white;
    padding: 30px 20px;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }

  .dashboard-logo img {
    max-width: 100px;
    margin-bottom: 40px;
  }
  .promoter-dp img.dp {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f0f0f0;
  }
.upload-label {
    position: absolute;
    bottom: 25px;
    right: 0px;
    background: white;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #ccc;
    width: 30px;
    height: 30px;
}
  .promoter-info {
    text-align: center;
    margin-top: 10px;
  }
  .promoter-info strong {
    font-weight: 600;
    font-size: 16px;
    color: #4d2460;
  }
  .promoter-info small {
    color: #777;
    font-size: 13px;
  }

  .promoters-db-tabs {
    margin-top: 40px;
  }
  .tab-link {
    display: flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    color: #4d2460;
    transition: background 0.2s;
  }
  .tab-link svg {
    margin-right: 10px;
    stroke: #4d2460;
  }
  .tab-link.active,
  .tab-link:hover {
    background: #f2ecff;
  }
.promoter-logout-button {
    padding: 30px;
}
  .dashboard-content {
    flex: 1;
    padding: 0 40px;
    border-top: 3px solid #ddd;
    }

  .dashboard-sidebar {
    width: 240px;
    background: #fff5e7;
    border-left: 1px solid #eee;
    padding: 20px;
  }
  
   .winner-form, .upcoming-form {
        max-width: 900px;
        margin: 0 auto;
        font-family: 'Segoe UI', sans-serif;
    }

    .winner-form .accordion, .upcoming-form .accordion {
        background-color: #f9f9f9;
        border-radius: 10px;
        margin-bottom: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        transition: all 0.3s ease-in-out;
    }

    .winner-form .accordion-header {
        padding: 15px 20px;
        background: #F4AF83;
        color: #000;
        cursor: pointer;
        font-weight: bold;
        user-select: none;
    }
    .upcoming-form .accordion-header {
        padding: 15px 20px;
        background: #F4AF83;
        color: #000;
        cursor: pointer;
        font-weight: bold;
        user-select: none;
    }

    .winner-form .accordion-body {
        display: none;
        padding: 20px;
        animation: fadeIn 0.3s ease-in-out;
    }
    .upcoming-form .accordion-body {
        display: none;
        padding: 20px;
        animation: fadeIn 0.3s ease-in-out;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .winner-form .accordion.open .accordion-body {
        display: block;
    }
    
    .upcoming-form .accordion.open .accordion-body {
        display: block;
    }
    
    .winner-form input, select, textarea {
        width: 100%;
        padding: 10px 14px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 15px;
        transition: border-color 0.3s;
    }

    .winner-form input:focus, select:focus, textarea:focus {
        border-color: #6f42c1;
        outline: none;
    }

    .winner-form textarea {
        resize: vertical;
        min-height: 80px;
    }

    .winner-form .submit-btn {
        display: inline-block;
        background: #6f42c1;
        color: white;
        border: none;
        padding: 12px 25px;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .winner-form .submit-btn:hover {
        background: #5a359f;
    }
     .tab-content table {
        width: 100%;
        margin-top: 20px;
        border-collapse: collapse;
        animation: fadeIn 0.5s ease-in-out;
    }
    .tab-content table th, .tab-content table td {
        padding: 10px;
        border: 1px solid #ddd;
    }
    .submit-btn {
        background: #0073aa;
        color: white;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
    }
    .submit-btn:hover {
        background: #005177;
        padding: 10px 20px;
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }