/*
Text in table cells is not wrapped by default in RTD theme:
https://github.com/readthedocs/sphinx_rtd_theme/issues/1505
*/
.wy-table-responsive table td,
.wy-table-responsive table th {
  text-wrap: wrap;
}

/*
max-width value is hard coded to 800px by default:
https://github.com/readthedocs/sphinx_rtd_theme/issues/295

We need to increase this value to make tables not to overflow the content border and not to appear
with scrollbar
*/
.wy-nav-content {
  max-width: none;
}

/*
Set maximum paragraph width to the default wy-nav-content's value to follow the theme's rule of
moderated text line width
*/
.wy-nav-content p {
  max-width: 800px;
}

.red {
    color: red;
}

.magenta {
    color: magenta;
}

.fuchsia {
    color: fuchsia;
}

.pink {
    color: pink;
}

.orange {
    color: orange;
}

.yellow {
    color: yellow;
}

.lime {
    color: lime;
}

.green {
    color: green;
}

.olive {
    color: olive;
}
