body { 
    font-family: sans-serif; 
    padding: 20px; 
    font-size: 16px; 
    background-color: #121212; /* темний фон */
    color: #e0e0e0; /* світлий текст */
}

.plan { 
    margin: 8px 0; 
    display: flex; 
    flex-wrap: wrap; 
    align-items: center; 
}

.plan a.date-link { 
    text-decoration: none; 
    color: #90caf9; /* світло-блакитний для посилань */
    font-weight: bold; 
}

.plan a.date-link:hover { 
    text-decoration: underline; 
}

.plan .edit-btn {
    margin-left: 8px;
    background: #2196f3;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.plan .edit-btn:hover { 
    opacity: 0.9; 
}

hr { 
    margin: 20px 0; 
    border: none; 
    border-top: 1px solid #444; /* темніша лінія */
}

.new-plan {
    background: #388e3c; /* темно-зелений */
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
}

.new-plan:hover { 
    opacity: 0.9; 
}
.plan .delete-btn {
    margin-left: 8px;
    opacity: 0.9; 
    background: red;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

/* Адаптивність для мобільних */
@media (max-width: 480px) {
    body { 
        padding: 15px; 
        font-size: 18px;
    }
    .plan a.date-link { 
        font-size: 18px;
    }
    .plan .edit-btn {
        font-size: 16px;
        padding: 6px 12px;
        margin-left: 5px;
    }
    .new-plan { 
        font-size: 16px; 
        padding: 8px 14px; 
    }
    .plan .delete-btn {
    font-size: 16px;
    padding: 6px 12px;
    margin-left: 5px;
    }
}
