/* General styling */
body {
    background-color: #000; /* Black background */
    color: #fff;           /* White text */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

h1 {
    color: #FFD700; /* Gold heading */
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
}

table th, table td {
    border: 1px solid #fff; /* White border */
    padding: 10px;
    text-align: left;
}

table th {
    background-color: #333; /* Dark grey header */
}

button.generate-message {
    background-color: #FFD700; /* Gold button */
    color: #000;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

button.generate-message:hover {
    background-color: #FFA500; /* Orange hover */
}

.text-muted {
    color: #888;
}
