body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    }
    
    h1 {
    text-align: center;
    color: #2c3e50;
    margin-top: 20px;
    }
    
    h2 {
    color: #34495e;
    margin-top: 10px;
    text-align: center;
    }
    
    p {
    font-size: 16px;
    margin: 10px auto;
    max-width: 500px;
    color: #555;
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .actions {
    text-align: center;
    margin-top: 20px;
    }
    
    .actions a {
    text-decoration: none;
    margin: 0 10px;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 4px;
    color: #fff;
    background-color: #3498db;
    transition: background-color 0.3s, transform 0.2s;
    }
    
    .actions a:hover {
    background-color: #2980b9;
    transform: scale(1.05);
    }
    
    .actions .btn-delete {
    background-color: #e74c3c;
    }
    
    .actions .btn-delete:hover {
    background-color: #c0392b;
    }
    
    .actions .btn-secondary {
    background-color: #95a5a6;
    }
    
    .actions .btn-secondary:hover {
    background-color: #7f8c8d;
    }