
body {
    background: #181c20;
    color: #e0e0e0;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 750px;
    margin: 32px auto;
    background: #23272b;
    border-radius: 14px;
    box-shadow: 0 4px 32px #000a;
    padding: 32px 28px 28px 28px;
}
h1 {
    color: #f7c873;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-align: center;
}
.section {
    margin-bottom: 28px;
}
.search-form {
    display: flex;
    gap: 10px;
    align-items: center;
}
.reset-link {
    color: #f7c873;
    text-decoration: none;
    margin-left: 8px;
    font-size: 0.98em;
}
.tools-section {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.tools-section form {
    display: inline;
}
.email-form {
    display: flex;
    gap: 10px;
    align-items: center;
}
.email-active {
    color: #b5b5b5;
    font-size: 0.95em;
    margin-left: 8px;
}
.add-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.add-fields {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.add-fields input[type="text"] {
    flex: 2 1 200px;
}
.add-fields textarea {
    flex: 3 1 300px;
}
.add-trigger-group {
    margin-bottom: 8px;
}
.add-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
#more-triggers .add-trigger {
    margin-top: 4px;
}
input, textarea, button, select {
    font-family: inherit;
    font-size: 1em;
    border-radius: 6px;
    border: none;
    outline: none;
    padding: 8px 10px;
    margin-bottom: 0;
    background: #23272b;
    color: #e0e0e0;
    transition: box-shadow 0.2s;
}
input:focus, textarea:focus, select:focus {
    box-shadow: 0 0 0 2px #f7c87355;
}
button {
    background: linear-gradient(90deg, #f7c873 60%, #e6b14c 100%);
    color: #23272b;
    font-weight: 600;
    cursor: pointer;
    border: none;
    padding: 8px 18px;
    margin-left: 0;
    margin-bottom: 0;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px #0002;
}
button:hover {
    background: #f7c873;
    color: #181c20;
}
.delete-btn {
    background: #2d2d2d;
    color: #f7c873;
    border: 1px solid #f7c87355;
    padding: 4px 10px;
    font-size: 0.95em;
    margin-left: 8px;
    transition: background 0.2s, color 0.2s;
}
.delete-btn:hover {
    background: #f7c873;
    color: #23272b;
}
.reminders-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.reminder-card {
    background: #23272b;
    border-radius: 8px;
    padding: 18px 18px 12px 18px;
    box-shadow: 0 2px 12px #0004;
    border: 1.5px solid #2d2d2d;
    transition: box-shadow 0.2s, border 0.2s;
    margin-bottom: 0;
}
.reminder-card.due {
    border: 2px solid #f7c873;
    box-shadow: 0 0 8px #f7c87388;
}
.reminder-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 8px;
}
.reminder-edit-form {
    flex: 1 1 70%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.reminder-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.reminder-title-row input[type="text"] {
    font-size: 1.1em;
    width: 70%;
}
.reminder-due {
    color: #f7c873;
    font-size: 0.95em;
}
.reminder-delete-form {
    align-self: flex-start;
}
.triggers ul {
    list-style: disc inside;
    margin: 0 0 0 8px;
    padding: 0;
}
.triggers li {
    margin-bottom: 4px;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 8px;
}
.trigger-due {
    color: #f7c873;
    font-weight: bold;
}
.trigger-due-label {
    font-size: 0.9em;
}
.trigger-delete-form {
    display: inline;
}
::-webkit-scrollbar {
    width: 10px;
    background: #23272b;
}
::-webkit-scrollbar-thumb {
    background: #2d2d2d;
    border-radius: 6px;
}
@media (max-width: 900px) {
    .container {
        padding: 12px 2vw;
    }
    h1 {
        font-size: 1.2em;
    }
    .reminder-title-row input[type="text"] {
        width: 100%;
    }
    .add-fields {
        flex-direction: column;
        gap: 4px;
    }
}