/* Container */
.ww-container {
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
    background: #f0fff0;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    font-family: 'Arial', sans-serif;
    position: relative;
}

/* Form */
.ww-form input, .ww-form textarea, input#wwName {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: all 0.3s ease;
}
.ww-form input:focus, .ww-form textarea:focus {
    border-color: #228B22;
    box-shadow: 0 0 5px rgba(34,139,34,0.5);
}
.ww-form button {
    background: #606D4A;
    color: #F5F5DC;
    padding: 12px 20px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}
.ww-form button:hover {
    transform: scale(1.05);
}

/* Confetti */
#confettiCanvas {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    pointer-events:none;
    z-index: 10;
}

/* Cards container */
.ww-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

/* Card style */
.ww-card {
    background: #606D4A;
    color: #F5F5DC; /* light beige for contrast */
    border-radius: 15px;
    padding: 15px;
    min-width: 200px;
    max-width: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-align: center;
    transition: transform 0.3s ease;
}
.ww-card:hover {
    transform: scale(1.05);
}
.ww-card-name {
    font-weight: bold;
    margin-bottom: 5px;
}

/* Admin Dashboard */
.ww-delete-all {
    background:#d9534f;
    color:white;
    padding:10px 20px;
    border-radius: 12px;
    border:none;
    cursor:pointer;
    margin-bottom:20px;
}
.ww-delete-all:hover {
    background:#c9302c;
}

.ww-admin-cards {
    display:flex;
    flex-wrap: wrap;
    gap:15px;
}
.ww-admin-card {
    background:#f0fff0;
    border-radius:12px;
    padding:15px;
    min-width:200px;
    box-shadow:0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}
.ww-admin-card:hover {
    transform: scale(1.03);
}

/* Admin Dashboard Cards */
.ww-admin-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}
.ww-admin-card {
    background: #606D4A;
    color: #F5F5DC; /* light text */
    border-radius: 15px;
    padding: 15px;
    min-width: 200px;
    max-width: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    font-family: 'Brush Script MT', cursive;
    text-align: center;
}
.ww-admin-card:hover {
    transform: scale(1.03);
}
.ww-card-name {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 16px;
}
.ww-card-wish {
    font-size: 14px;
}


/* Delete All Button */
.ww-delete-all {
    background:#d9534f;
    color:white;
    padding:10px 20px;
    border-radius: 12px;
    border:none;
    cursor:pointer;
    margin-bottom:20px;
}
.ww-delete-all:hover {
    background:#c9302c;
}

/* Delete single wish button */
.ww-delete-single {
    background:#d9534f;
    color:white;
    padding:6px 12px;
    border-radius:10px;
    border:none;
    cursor:pointer;
    font-size:12px;
    transition: all 0.3s ease;
    margin-top:5px;
}
.ww-delete-single:hover {
    background:#c9302c;
}