body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    margin: 0;
    padding: 20px;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-size: 2.5em;
}

.input-section {
    margin: 20px 0;
}

input {
    padding: 12px 20px;
    font-size: 18px;
    border: none;
    border-radius: 25px;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

button {
    padding: 12px 30px;
    font-size: 18px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin-left: 10px;
    transition: transform 0.2s;
}

button:hover {
    transform: scale(1.05);
}

.praise-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.praise-bubble {
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    color: #333;
    opacity: 0;
    transform: scale(0.5);
}

.praise-bubble.animate {
    animation: popIn 0.5s ease-out forwards, float 3s ease-in-out infinite;
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.praise-bubble:nth-child(odd) {
    background: #ffd93d;
}

.praise-bubble:nth-child(even) {
    background: #ff9a9e;
}

.praise-bubble:hover {
    transform: scale(1.05);
    transition: transform 0.2s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Confetti styles */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    pointer-events: none;
    animation: confettiFall linear forwards;
    z-index: 1000;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}

.custom-select {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.select-selected {
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    padding-right: 35px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
}

.select-selected:after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-top-color: white;
    margin-top: 3px;
}

.select-items {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background-color: rgba(42, 42, 42, 0.95);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    z-index: 100;
    min-width: 120px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.select-hide {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.select-items div {
    padding: 12px 20px;
    cursor: pointer;
    color: white;
    transition: all 0.2s;
}

.select-items div:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.save-btn {
    background-color: #9c27b0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.save-btn.show {
    opacity: 1;
    transform: translateY(0);
}

.save-btn:hover {
    background-color: #7b1fa2;
} 