/* 
 * Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
 * See LICENSE in the project root for license information.
 */

/* General Styles */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #cbebeb; /* Light background for Outlook */
    color: #333;
}

span {
    white-space: pre-line;
}

/* Card-style panel */
.ms-panel {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin: 20px;
}

/* Headings */
h1, h2 {
    color: #2f90bd; /* Office Blue */
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Paragraph text */
p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Feature list */
.ms-welcome__features {
    list-style-type: none;
    padding: 0;
}

.ms-welcome__features .ms-ListItem {
    display: flex;
    align-items: flex-start;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    transition: background-color 0.2s;
}

.ms-welcome__features .ms-ListItem:hover {
    background-color: #ccf3fa75;
}

/* Icons */
.ms-welcome__features .ms-Icon {
    margin-right: 12px;
    font-size: 1.2rem;
    color: #0078d4; /* Accent color */
}

/* Button styles */
.ms-Button.ms-Button--hero {
    background-color: #0078d4;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.ms-Button.ms-Button--hero:hover {
    background-color: #005a9e;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ms-panel {
        margin: 10px;
        padding: 15px;
    }

    h1, h2 {
        font-size: 1.25rem;
    }
}