/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
/* <style> */

/*
Source - https://stackoverflow.com/a/41468978
——————————————————————————
vTable Rotate Table by 90°
——————————————————————————
Posted by Troyer
Retrieved 2026-04-30, License - CC BY-SA 3.0
*/

.vtable {
    transform:rotate(90deg);  
}
.vtable th, .vtable td{
    transform:rotate(-90deg);
}
.vtable td {
  height: 50px;
}
/* ####################################### */

/* </style> */