/* Custom override to widen main content area in Sphinx HTML output */
.wy-nav-content {
    max-width: 1200px !important;
}

/* Custom styles for Sphinx roles */
.greenbox {
    color: white;
    background-color: #2c9a43;
    font-weight: normal;
    padding: 2px 5px 1px 5px;
    border-radius: 5px;
}
.whitebox {
    color: black;
    background-color: white;
    font-weight: normal;
    padding: 2px 5px 1px 5px;
    border-radius: 5px;
}
.blackbox {
    color: white;
    background-color: black;
    font-weight: normal;
    padding: 2px 5px 1px 5px;
    border-radius: 5px;
}

/* Red box for important information */
.redbox {
    color: white;
    background-color: #dc3545;
    font-weight: normal;
    padding: 2px 5px 1px 5px;
    border-radius: 5px;
}

/* Important information box for top of page */
.important-info-box {
    background-color: #f8d7da;
    border: 2px solid #dc3545;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 20px 0;
    color: #721c24;
    font-weight: 500;
}

.important-info-box h3 {
    color: #dc3545;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: bold;
}

.important-info-box p {
    margin-bottom: 8px;
}

.important-info-box p:last-child {
    margin-bottom: 0;
}

.important-info-box ul {
    margin-bottom: 8px;
    padding-left: 20px;
}

.important-info-box li {
    margin-bottom: 5px;
}

