/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f7;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 900px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    color: #28a745;
    font-weight: bold;
    margin-bottom: 15px;
}

p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.toolbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.toolbox label {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.toolbox label:hover {
    background-color: #218838;
}

.toolbox input[type="file"] {
    display: none;
}

.toolbox input[type="text"] {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 10px;
}

.toolbox button {
    padding: 12px 25px;
    background-color: #007bff;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    width: 200px;
    transition: background-color 0.3s ease;
}

.toolbox button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.toolbox button:hover:enabled {
    background-color: #0056b3;
}

.output {
    margin-top: 30px;
}

.folder {
    background-color: #f1f1f1;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.folder:hover {
    transform: scale(1.02);
}

.folder h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 15px;
}

.file-link {
    display: block;
    padding: 10px;
    font-size: 1.1rem;
    color: #007bff;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
    margin-bottom: 10px;
}

.file-link:hover {
    color: #0056b3;
    border-bottom: 2px solid #007bff;
}

.footer {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 50px;
    color: #777;
    padding: 15px;
    width: 100%;
    background-color: #f9f9f9;
    border-radius: 5px;
}

/* Animation */
.animate__fadeIn {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .toolbox {
        gap: 10px;
    }

    .toolbox input[type="text"] {
        width: 100%;
    }

    .toolbox button {
        width: 100%;
    }

    .folder h3 {
        font-size: 1.25rem;
    }
}
/* Water Drop */
.water-drop {
    width: 30px;
    height: 30px;
    background-color: #cbfcf7;
    border-radius: 50% 50% 60% 60% / 60% 60% 100% 100%;
    position: relative;
    animation: dropFall 2s infinite ease-in-out;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@keyframes dropFall {
    0% {
        transform: translateY(0) scaleY(1);
        opacity: 1;
    }
    70% {
        transform: translateY(40px) scaleY(1.2);
        opacity: 0.8;
    }
    100% {
        transform: translateY(60px) scaleY(0.5);
        opacity: 0;
    }
}
/* Water Drop */
.water-drop {
    width: 30px;
    height: 30px;
    background-color: #497cf7; /* Updated color */
    border-radius: 50% 50% 60% 60% / 60% 60% 100% 100%;
    position: relative;
    animation: dropFall 2s infinite ease-in-out;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

