        .todo-container {
            background: #fff;
            width: 100%;
            max-width: 560px;
            border: 1px solid #dee2e6;
            border-radius: 24px;
            padding: 28px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
margin:0 auto;
        }
       
        .todo-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(to right, #4caf50, #8bc34a);
        }
       
        .header-area {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 28px;
        }
       
        .badge-tasks {
            background: linear-gradient(90deg, #ffda44, #ffc107);
            color: #212529;
            padding: 8px 18px;
            border-radius: 50px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
            border: 2px solid #212529;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
       
        .btn-circle-add {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 2px solid #6c757d;
            background: white;
            color: #495057;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            font-weight: bold;
            transition: all 0.2s;
        }
       
        .btn-circle-add:hover {
            background: #ffc107;
            border-color: #ffc107;
            transform: rotate(90deg);
        }
       
        .input-box {
            display: flex;
            border: 2px solid #495057;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
       
        .btn-yellow-add {
            background: linear-gradient(90deg, #ffc107, #ffeb3b);
            border: none;
            border-left: 2px solid #495057;
            width: 58px;
            font-weight: bold;
            font-size: 1.8rem;
            transition: all 0.2s;
        }
       
        .todo-input {
            border: none;
            padding: 14px 18px;
            flex-grow: 1;
            outline: none;
            font-size: 1.05rem;
            color: #495057;
        }
       
        .progress-section {
            margin-bottom: 24px;
        }
       
        .progress-container {
            height: 8px;
            background: #e9ecef;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
        }
       
        .progress-bar {
            height: 100%;
            background: linear-gradient(to right, #4caf50, #66bb6a);
            width: 0%;
            transition: width 0.4s ease;
            border-radius: 10px;
        }
       
        .progress-text {
            text-align: center;
            font-size: 0.85rem;
            color: #6c757d;
            margin-top: 4px;
        }
       
        .todo-item {
            border: 1px solid #e0e0e0;
            border-radius: 16px;
            padding: 14px 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
            transition: all 0.25s ease;
            background: #fff;
            gap: 12px;
        }
       
        .todo-item:hover {
            transform: translateX(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            border-color: #adb5bd;
        }
       
        .todo-item.done {
            background-color: #f8f9fa;
            border-color: #ced4da;
        }
       
        .todo-text {
            flex: 1;
            padding: 0 8px;
            color: #495057;
            font-size: 1.02rem;
            text-align: right;
            line-height: 1.4;
            word-break: break-word;
        }
       
        .todo-item.done .todo-text {
            text-decoration: line-through;
            opacity: 0.7;
            color: #6c757d;
        }
       
        .edit-input {
            flex: 1;
            padding: 8px 12px;
            border: 2px solid #4caf50;
            border-radius: 10px;
            font-size: 1.02rem;
            outline: none;
        }
       
        .actions-right {
            display: flex;
            align-items: center;
            gap: 8px;
        }
       
        .check-box {
            width: 28px;
            height: 28px;
            background: #e9ecef;
            border: 2px solid #adb5bd;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            font-size: 1.1rem;
            transition: all 0.2s;
            flex-shrink: 0;
        }
       
        .check-box:hover {
            background: #d4edda;
            border-color: #4caf50;
        }
       
        .todo-item.done .check-box {
            background: #4caf50;
            border-color: #4caf50;
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
        }
       
        .btn-edit, .btn-delete {
            width: 32px;
            height: 32px;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.2s;
            flex-shrink: 0;
        }
       
        .btn-edit {
            background: #fff3cd;
            color: #ffc107;
        }
       
        .btn-edit:hover {
            background: #ffc107;
            color: white;
            transform: scale(1.1);
        }
       
        .btn-delete {
            background: #f8d7da;
            color: #dc3545;
        }
       
        .btn-delete:hover {
            background: #dc3545;
            color: white;
            transform: scale(1.1);
        }
       
        .arrow-controls {
            display: flex;
            flex-direction: column;
            color: #adb5bd;
            font-size: 0.75rem;
            line-height: 1;
            gap: 1px;
        }
       
        .arrow-controls span {
            cursor: pointer;
            transition: color 0.2s;
        }
       
        .arrow-controls span:hover {
            color: #495057;
        }
       
        .footer-area {
            border-top: 1px solid #dee2e6;
            margin-top: 24px;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
       
        .stats-text {
            color: #6c757d;
            font-size: 0.95rem;
            font-weight: 500;
        }
       
        .footer-btns {
            display: flex;
            gap: 8px;
        }
       
        .btn-outline-custom {
            border: 1px solid #6c757d;
            background: #fff;
            border-radius: 50px;
            padding: 6px 14px;
            font-size: 0.7rem;
            color: #495057;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s;
        }
       
        .btn-outline-custom:hover {
            background: #f8f9fa;
            border-color: #495057;
            transform: translateY(-1px);
        }
