/*
Theme Name: Carrino - Child Theme
Theme URI: http://www.3forty.media/carrino
Author: 3FortyMedia
Author URI: http://www.3forty.media
Description: Carrino Child theme for easy and non-destructive editing of Carrino theme
Version: 1.1
Text Domain: carrino
Template: carrino
*/

/* Start Custom CSS */
.entry-meta .avatar {
  width: 30px !important;
}
ul {
list-style-type: disc;
}

.breadcrumbs {
  font-size: 13px;
  margin: 15px 0;
}
.breadcrumbs a {
  text-decoration: none;
  color: #444;
}
.breadcrumbs .breadcrumb_last {
  font-weight: 600;
}


// MODYFIKACJA TABELI NA MOBILE
@media (max-width: 390px) {
  .entry-content td {
    display: table-cell !important;
  }

  /* przewijanie tabeli */
  .entry-content table {
    display: block;
    overflow-x: auto;
    width: 100%;
    white-space: nowrap;
    margin-bottom: 20px; 
    position: relative; 
  }

  /* instrukcja tekstowa pod tabelą */
  .entry-content table::after {
    content: "← Przesuń tabelę w bok →"; 
    display: block;
    
    /* Stylistyka napisu */
    font-size: 12px;
    color: #888;
    text-align: center; 
    padding-top: 5px;
    font-style: italic;
    position: sticky; 
    left: 0;
  }
}