.elementor-1234 .elementor-element.elementor-element-e78530c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1234 .elementor-element.elementor-element-503fd70 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-503fd70 */:root {
            --primary-purple: #7e57c2;
            --dark-purple: #5e35b1;
            --light-purple: #b39ddb;
            --primary-pink: #f06292;
            --dark-pink: #e91e63;
            --light-pink: #f8bbd0;
            --success: #66bb6a;
            --warning: #ffa726;
            --danger: #ef5350;
            --text-dark: #333;
            --text-light: #f5f5f5;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        .container {
            max-width: 900px;
            margin: 2rem auto;
            padding: 1.5rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        
        header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        h1 {
            color: var(--dark-purple);
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
            background: linear-gradient(to right, var(--dark-purple), var(--dark-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .subtitle {
            color: var(--primary-pink);
            font-size: 1rem;
        }
        
        .add-habit {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }
        
        .add-habit input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid var(--light-purple);
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        
        .add-habit input:focus {
            outline: none;
            border-color: var(--primary-purple);
        }
        
        .add-habit button {
            background-color: var(--primary-pink);
            color: white;
            border: none;
            border-radius: 8px;
            width: 3rem;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .add-habit button:hover {
            background-color: var(--dark-pink);
            transform: scale(1.05);
        }
        
        .habit-list {
            list-style: none;
        }
        
        .habit-item {
            background-color: white;
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border-left: 5px solid var(--primary-purple);
            transition: transform 0.3s;
        }
        
        .habit-item:hover {
            transform: translateY(-3px);
        }
        
        .habit-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            cursor: pointer;
            background-color: var(--light-pink);
        }
        
        .habit-name {
            font-weight: 600;
            color: var(--dark-purple);
            font-size: 1.1rem;
        }
        
        .habit-actions {
            display: flex;
            gap: 0.5rem;
        }
        
        .habit-btn {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            transition: all 0.2s;
        }
        
        .frequency {
            background-color: var(--primary-purple);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
        }
        
        .entries-count {
            text-align: center;
            padding: 0.5rem;
            font-size: 0.9rem;
            color: var(--dark-purple);
            border-top: 1px solid #eee;
        }
        
        .progress-container {
            width: 100%;
            height: 8px;
            background-color: #e0e0e0;
            border-radius: 4px;
            margin-top: 0.5rem;
            overflow: hidden;
        }
        
        .progress-bar {
            height: 100%;
            background-color: var(--primary-purple);
            width: 0%;
            transition: width 0.5s ease;
        }
        
        .no-habits {
            text-align: center;
            padding: 2rem;
            color: #888;
        }
        
        .delete-btn {
            color: var(--danger);
        }
        
        .edit-btn {
            color: var(--primary-purple);
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background-color: white;
            border-radius: 12px;
            width: 90%;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            animation: modalFadeIn 0.3s ease;
        }
        
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }
        
        .modal-title {
            color: var(--dark-purple);
            font-size: 1.5rem;
            margin: 0;
        }
        
        .close-btn {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #888;
            transition: color 0.2s;
        }
        
        .close-btn:hover {
            color: var(--danger);
        }
        
        .detail-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-group label {
            margin-bottom: 0.5rem;
            color: var(--dark-purple);
            font-weight: 500;
            font-size: 0.9rem;
        }
        
        .detail-form input, 
        .detail-form textarea {
            padding: 0.7rem;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 0.95rem;
        }
        
        .detail-form textarea {
            resize: vertical;
            min-height: 80px;
        }
        
        .form-actions {
            grid-column: span 2;
            display: flex;
            justify-content: space-between;
            margin-top: 0.5rem;
        }
        
        .save-btn, .report-btn {
            padding: 0.7rem 1.2rem;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .save-btn {
            background-color: var(--primary-purple);
            color: white;
        }
        
        .save-btn:hover {
            background-color: var(--dark-purple);
        }
        
        .report-btn {
            background-color: var(--primary-pink);
            color: white;
        }
        
        .report-btn:hover {
            background-color: var(--dark-pink);
        }
        
        .status-container {
            grid-column: span 2;
            margin-top: 1rem;
        }
        
        .status-message {
            padding: 0.8rem;
            border-radius: 6px;
            font-weight: 500;
            text-align: center;
        }
        
        .great {
            background-color: var(--success);
            color: white;
        }
        
        .normal {
            background-color: var(--warning);
            color: white;
        }
        
        .control {
            background-color: #fb8c00;
            color: white;
        }
        
        .danger {
            background-color: var(--danger);
            color: white;
        }
        
        /* Report List Styles */
        .report-list {
            margin-top: 1.5rem;
            background-color: #f9f9f9;
            border-radius: 6px;
            padding: 1rem;
            border: 1px solid #eee;
        }
        
        .report-list h3 {
            color: var(--dark-purple);
            margin-bottom: 0.5rem;
        }
        
        .report-list ul {
            list-style: none;
            margin-top: 0.5rem;
        }
        
        .report-list li {
            padding: 0.5rem;
            border-bottom: 1px solid #eee;
        }
        
        .report-list li:last-child {
            border-bottom: none;
        }
        
        .report-entry {
            margin-bottom: 1rem;
            padding: 0.8rem;
            background-color: white;
            border-radius: 4px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        
        .report-entry-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.3rem;
            font-weight: 500;
        }
        
        .report-entry-date {
            color: var(--dark-purple);
        }
        
        .report-entry-trigger {
            color: var(--dark-pink);
        }
        
        .report-entry-thoughts {
            font-size: 0.9rem;
            color: #555;
        }
        
        @media (max-width: 768px) {
            .modal-content {
                width: 95%;
                padding: 1.5rem;
            }
            
            .detail-form {
                grid-template-columns: 1fr;
            }
            
            .form-actions {
                grid-column: span 1;
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .status-container,
            .report-list {
                grid-column: span 1;
            }
        }/* End custom CSS */