/* People Section */
.people-section {
    background: rgba(30, 30, 30, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(214, 51, 132, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(214, 51, 132, 0.3);
}

.people-counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(214, 51, 132, 0.3);
}

.people-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.person-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(40, 40, 40, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(214, 51, 132, 0.3);
    transition: all 0.3s ease;
}

.person-item:hover {
    background: rgba(50, 50, 50, 0.9);
    transform: translateX(5px);
    border-color: rgba(214, 51, 132, 0.5);
}

.person-icon {
    font-size: 1.5rem;
}

.person-name {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: #ffffff;
    padding: 0.3rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.person-name:focus {
    outline: none;
    background: rgba(214, 51, 132, 0.1);
}

.remove-person-btn {
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.remove-person-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

.add-person-btn-below {
    background: linear-gradient(135deg, #d63384, #e91e63);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(214, 51, 132, 0.4);
    margin-top: 1rem;
    width: 100%;
}

.add-person-btn-below:hover {
    background: linear-gradient(135deg, #c44569, #d63384);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 51, 132, 0.5);
}

/* Responsive Design for People Section */
@media (max-width: 768px) {
    .person-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
} 