body {
    font-family: 'Roboto', sans-serif;
    background: #f7f7f7;
    color: #333;
    margin: 0;
    padding: 0;
}

.navbar {
    background: #6c5ce7;
    color: #fff;
    padding: 1rem;
    text-align: center;
    animation: slideDown 0.5s ease-out;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.navbar-brand img {
    vertical-align: middle;
    margin-right: 0.5rem;
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

.title, .subtitle {
    text-align: center;
    margin-bottom: 1rem;
    color: #6c5ce7;
    animation: fadeInUp 1s ease-out;
}

.card {
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    background: #f1f1f1;
    animation: fadeIn 1.2s ease-in-out;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #6c5ce7;
    color: #fff;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #4834d4;
}

.btn-success {
    background: #00b894;
    color: #fff;
    transition: background 0.3s;
}

.btn-success:hover {
    background: #019370;
}

.result {
    font-size: 1.2em;
    font-weight: bold;
    color: #6c5ce7;
    margin-top: 1rem;
    animation: fadeInUp 1.2s ease-out;
}

.table {
    width: 100%;
    margin-top: 1rem;
    border-collapse: collapse;
    animation: fadeIn 1.2s ease-in-out;
}

.table th, .table td {
    padding: 0.75rem;
    border: 1px solid #ddd;
    text-align: center;
}

.table th {
    background: #6c5ce7;
    color: #fff;
}

.table tr:nth-child(even) {
    background: #f9f9f9;
}

.total-budget {
    font-size: 1.2em;
    font-weight: bold;
    color: #00b894;
    margin-top: 1rem;
    text-align: center;
    animation: fadeInUp 1.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.table .action-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.table .action-buttons button {
    padding: 0.25rem 0.5rem;
    border: none;
    background-color: #dc3545;
    color: #fff;
    cursor: pointer;
}

.table .action-buttons button:hover {
    background-color: #bd2130;
}
.fade-enter-active, .fade-leave-active {
    transition: opacity 0.3s;
  }
  
  .fade-enter, .fade-leave-to {
    opacity: 0;
  }