/* Custom CSS for Icons and Tooltips with D365 Hugo site */

/* Ensure images are responsive */
.post-content img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
}

/* Button styling */
.button, a.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0078d4;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin: 5px;
    transition: background-color 0.3s;
}

.button:hover, a.button:hover {
    background-color: #106ebe;
    color: white;
}

/* Parameter list styling */
.parameter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1rem 0;
}

.parameter-list a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f3f3f3;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.parameter-list a:hover {
    background-color: #0078d4;
    color: white;
    border-color: #0078d4;
}

/* Button grid */
.button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 2rem 0;
}

.button-grid a {
    display: block;
    padding: 15px;
    background-color: #0078d4;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.button-grid a:hover {
    background-color: #106ebe;
}

/* Screenshot carousel placeholder */
.carousel {
    margin: 2rem 0;
}

.carousel img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

/* License pricing box */
.purchase h3 {
    font-size: 2.5rem;
    color: #0078d4;
    margin: 1rem 0;
}

/* Code blocks */
pre code {
    display: block;
    padding: 1rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow-x: auto;
}
