#epm-app {
    max-width: 700px;
    margin: 40px auto;
    font-family: Arial, sans-serif;
}

/* FULL WIDTH INPUT */
#epm-app input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    margin-bottom: 15px;
    font-size: 16px;
}

/* LABELS */
#urgency-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#urgency-container,
#importance-container {
    margin: 15px 0;
}

#submit-task {
    padding: 10px 20px;
    cursor: pointer;
}

#result {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
}

/* MATRIX */
#matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
    gap: 10px;
}

.quadrant {
    border: 1px solid #ccc;
    min-height: 150px;
    padding: 10px;
    border-radius: 6px;
}

#q1 { background: #d4edda; }
#q2 { background: #fff3cd; }
#q3 { background: #d1ecf1; }
#q4 { background: #f8d7da; }

.task-item {
    background: #fff;
    padding: 8px;
    margin-top: 6px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: grab;
    position: relative;
}

.task-item[contenteditable="true"] {
    border: 2px dashed #0073aa;
}

.task-delete {
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
    color: red;
    font-size: 12px;
}

.epm-login-msg {
    color: #888;
    margin-top: 10px;
}

.task-item {
    background: #fff;
    padding: 8px;
    margin-top: 6px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
}

.task-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.task-body {
    margin-top: 10px;
    display: none;
}

.task-item.active .task-body {
    display: block;
}

.task-actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.task-actions button {
    padding: 5px 10px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
}

.btn-done { background: #28a745; color: white; }
.btn-delete { background: #dc3545; color: white; }