@tailwind base;
@tailwind components;
@tailwind utilities; 
.scrolling-boxes-container {
  width: 100%;
  overflow-x: auto;
  padding: 20px 0;
}

.scrolling-boxes-container .boxes-wrapper {
  display: flex;
  gap: 20px;
  padding: 0 20px;
}

.scrolling-boxes-container .box-link {
  text-decoration: none;
  color: inherit;
  flex: 0 0 auto;
  width: calc(33.333% - 14px);
  min-width: 250px;
}

.scrolling-boxes-container .info-box {
  width: 100%;  /* Changed from fixed width to 100% */
  padding: 20px;
  background: #f5f7fa;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  position: relative;
  height: 180px;
}

.scrolling-boxes-container .info-box:hover {
  transform: translateY(-2px);
}

.scrolling-boxes-container .name {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #333;
  /* Ensure long names don't overlap with number */
  padding-bottom: 40px;
  /* Handle text overflow for long names */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.scrolling-boxes-container .number {
  font-size: 16px;
  color: #666;
  position: absolute;
  bottom: 20px;
  left: 20px;
}
/* This file may be used for providing additional customizations to the Trestle
 * admin. It will be automatically included within all admin pages.
 *
 * For organizational purposes, you may wish to define your customizations
 * within individual partials in this folder and they'll be required below.
 *

*/
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
