/*
 * 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.
 *


 *
 */
.accordionactivities {
    background-color: #cecece00;
    border: none;
    }

.accordionactivities-button {
    position: relative;
    margin-right: -10em; 
    margin-top: 0;
    background-color: #8fb81d00;
    }

.zaccordionactivities-button:focus {
    border: 1px;
    background-color: #8fb81d00;
}

.zaccordionactivities-button:not(.collapsed) {
    border: 1px;
    background-color: #5400c900;
  }

.accordionactivities .accordion-button::after {
    position: absolute; /* Position the pseudo-element relative to its parent */
    right: 0; /* Adjust the position from the right edge of the parent */
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus-circle' viewBox='0 0 16 16'><path d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/><path d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/></svg>");
    }

.accordionactivities .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash-circle' viewBox='0 0 16 16'><path d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/><path d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/></svg>");
    }

.move-activity-expand-over {
    zposition: relative; 
    top: 1rem; 
    right: 1rem;
    padding: 2px;
    margin-top: -0px;
    margin-left: -0px;
    }


/* Rotate 360 degrees */
@keyframes rotatefull {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
  }

/* Rotate 360 degrees */
@keyframes rotatewobble {
    0% { transform: rotate(-5deg); }
    30% { transform: rotate(30deg); }
    60% { transform: rotate(-30deg); }
    100% { transform: rotate(0deg); }
  }

  /* Change from red to yellow */
  @keyframes colourmorph {
    to {background-color: white;}
  }

  /* Change from red to yellow */ 
  @keyframes moveforward {
    0% { transform: translate(2px,0); }
    25% { transform: translate(4px,0); }
    50% { transform: translate(6px,0); }
    75% { transform: translate(4px,0); }
    100% { transform: translate(2px,0); }
  }

  /* Increase font size */
  @keyframes embolden {
      25% {font-size: 17px;}
    }
.breadcrumbs {
    margin-top: 4em;
    position: relative;
    height: 20px;
    overflow-x: hidden; /* Disable horizontal scroll */
    overflow-y: hidden; /* Disable vertical scroll */
    background-color: #ffffff; 
}
/* app/assets/stylesheets/business_profile.css */

.profile-card {
  margin: 20px 0;
}

.profile-card .card-body {
  display: flex;
  align-items: center;
}

.profile-card img {
  max-width: 60px;
  max-height: 60px;
  margin-right: 15px;
}

.contact-info {
  margin-top: 10px;
}

.contact-info p {
  margin: 0;
}

.img-max {
  max-width: 100px;
  width:100%;
}
/* app/assets/stylesheets/buttons.css */

  /* css for close bar in top right of offcanvas */
  .offcanvas-close-button {
    position: absolute; 
    top: 1rem; 
    right: 1rem;
  }

  .custom-button {
    display: inline-block;
    border: 1px solid #5e5e5e;
    padding: 7px 8px 7px 8px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    margin: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 6px;
  }
  
  .custom-button-menu {
    /* pop-in sidebar (shown from menu button */
    display: inline-block;
    border: 1px solid #5e5e5e;
    padding: 7px 8px 7px 8px;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    margin-bottom: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 5px;
  }

  .custom-button-mini {
    /* small sidebar (always shown) */
    border: 2px solid #262626;
    font-size: 21px;
    cursor: pointer;
    border-radius: 4px;
  }

  .custom-button:before {
    background-color: rgba(255, 255, 255, 0.699);
  }

  .custom-button span {
    display: inline-block;
    margin-right: 0px;
    font-weight: bold;
    transition: transform 0.3s ease;
  }

  .custom-button-mini span {
    display: inline-block;
    margin-right: 5px;
    font-weight: small;
    transition: transform 0.3s ease;
  }
  
  .custom-button:hover {
    color: #f9f7f4;
    background-color: #04c3ee;
    border-color: #5b288e;
  }
  
  .custom-button:hover span {
    font-weight: bold;
    animation-name: rotatewobble;
    animation-duration: 0.5s;
  }

  .custom-button-mini:hover span {
    font-weight: bold;
    animation-name: moveforward;
    animation-duration: 0.5s;
  }

  .custom-button-menu:hover span {
    font-weight: bold;
    animation-name: embolden;
    animation-duration: 0.5s;
  }

  .custom-button-menu:hover {
    font-weight: bold;
    animation-duration: 0.5s;
  }
  
  .custom-button.blue {
    background-color: #007bff;
    color: #fff;
  }
  
  .custom-button.green {
    background-color: #28a745;
    color: #fff;
  }
  
  .custom-button.red {
    background-color: #dc3545;
    color: #fff;
  }
  
  .custom-button.yellow {
    background-color: #ffc107;
    color: #000;
  }
  
  .custom-button.purple {
    background-color: #6f42c1;
    color: #fff;
  }
  
  .custom-button.orange {
    background-color: #fd7e14;
    color: #fff;
  }
  
  .custom-button.teal {
    background-color: #20c997;
    color: #fff;
  }
  
  .custom-button.dblue {
    background-color: #0e0bc7;
    color: #fff;
  }
  
  .custom-button.black {
    background-color: #000000;
    color: #fff;
  }

  .custom-button.dred {
    background-color: #800101;
    color: #fff;
  }

  .custom-button.pink {
    background-color: #e83e8c;
    color: #fff;
  }

  .custom-button.euve {
    background-color: #651bdb;
    color: #fff;
  }

  .custom-button.dgreen {
    background-color: #09584e;
    color: #fff;
  }

  .custom-button-menu.dgreen {
    background-color: #09584d52;
    color: #fff;
    width: 85%;
  }

  .custom-button-mini.dgreen {
    background-color: #07473f81;
    color: #fff;
  }

  .custom-button-menu.smol {
    background-color: #ffffff00;
    color: #fff;
  }

  .inline-button {
    --bs-btn-padding-y: .1rem; 
    --bs-btn-padding-x: .1rem; 
    --bs-btn-font-size: .9rem;
    border: 0px;
  }

  .inline-button-lg {
    --bs-btn-padding-y: .1rem; 
    --bs-btn-padding-x: .1rem; 
    --bs-btn-font-size: 1.2rem;
    border: 0px;
  }

.search_date_columns {
    min-width: 20pc;
    }

#column1, #column2 {
    transition: width 0.3s ease-in-out;
    }
      
#column3 {
    transition-delay: 2s;
    transition: width 2s ease-in-out;
    }
.dropdown-actions {
    min-width: 7vw;
    max-width: 50vw;
    width: auto;
    white-space: nowrap; /* Prevents text wrapping */
    border: 2px solid #5e5d5d;  /* Example: 1px solid black border */
    background-color: #262626;
  }
#provider-search.form-control::placeholder {
  color: rgb(104, 104, 104);
}

.embed-map {
  width: 12.5rem;
  height: 8.25rem;
  border-radius: 5px;
  background: black;
  border: 2px solid;
}

.embed-map-placeholder {
  width: 12.5rem;
  height: 8.25rem;
  background: grey;
  border-radius: 15px;
}
.footer {
    position: scroll;
    width: 100%;
    bottom: 0;
    margin-top: 0.5rem; /* Adjust the margin to prevent overlap with the sidebar */
}
  /* Red border */
  hr.red {
    border-top: 1px solid red;
  }
  
  /* Dashed border */
  hr.dashed {
    border-top: 1px dashed;
  }
  
  /* Dotted border */
  hr.dotted {
    border-top: 1px dotted;
  }
  
  /* Thick border */
  hr.solid {
    border: 1px solid;
  }
  
  /* Large rounded border */
  hr.thick {
    border: 10px solid;
    border-radius: 5px;
  } 

  hr.dividing-line {
    height: 5px; 
    border: 5px double; 
    border-color: #262626;
  }
/* css behaviour for inline edit fields */

.inline-action { display: none; }
.inline-edit .inline-action { display: initial; }

.pencil-icon-parent .pencil-icon-hide { display: none; }

.pencil-icon-parent:hover .pencil-icon-hide { display: inline; }

/* for fields requiring entry, class required */
.required::after {
  content: " *";
  color: red;
}

.navbar-prod {
    background-color: #264653; 
}

.navbar-test {
    background-color: #800d05; 
}

.navbar-dev {
    background-color: #164902; 
}

.navbar {
    border-bottom: 1px ridge #262626;
}

.navbar-custom {
    background-color: #262626e0;
    transition: all 0.3s ease;
}

.navbar-custom.shrink {
    background-color: #262626e0;
    border-bottom: 1px ridge #ececec17;
}

.button-hover-white:hover {
  color: #ffffff !important;
}
.icon-green {
    color: green;
}

.icon-yellow {
    color: #d8d80a;
}

.icon-red {
    color: red;
}

.icon-orange {
    color: orange;
}

.icon-grey {
    color: grey;
}

.icon-purple {
    color: purple;
}

.icon-mauve {
    color: magenta;
}

.icon-light {
    color: lightgray;
}

.icon-blue {
    color: #2727c4;
}
/* Custom CSS for records, individual and conditional */
/* 0c as saturation for background colours, makes it just subtle enough not to clash */

/* change the background colour for leads as many records look the same */
.lead-bg {
  background: linear-gradient(45deg, transparent 49%, #9a9a9a1c 49% 51%, transparent 51%) , linear-gradient(-45deg, transparent 49%, #9a9a9a1c 49% 51%, transparent 51%);
  background-size: 1em 1em;
}

/* change the background colour for targets as many records look the same */
.target-bg {
  /* lets get the hex calculator in here to calculate the colour for this */
  background: radial-gradient(circle, transparent 25%, #ffffff  26%),linear-gradient(0deg, transparent 44%, #9a9a9a1c 45%, #9a9a9a1c 55%, transparent 56%), linear-gradient(90deg, transparent 44%, #9a9a9a1c 45%, #9a9a9a1c 55%, transparent 56%);
  background-size: 1em 1em;
}

.disabled-bg {
  opacity: 0.4;
}
/* Custom CSS for the sidebar */
.popsidebar { /* this is the offcanvas sidebar */
    position: fixed; /* Stay in place */
    border-right: 5px ridge #262626;
    overflow-y: auto; /* Make sure the sidebar content is vertically scrollable */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.3s;
    width: 35vw;
    max-width: 200px;
    padding-top: 0px !important;
}

.mainsidebar {
    height: 100%;
    width: 8vw;
    max-width: 50px;
    position: fixed; /* Stay in place */
    top: 0;
    overflow-y: hidden; /* Make sure the sidebar content is not vertically scrollable */
    overflow-x: hidden; /* Disable horizontal scroll */
}

.baselevel {
    position: fixed;
    bottom: 10px;
}

.showup {
    position: sticky;
    overflow: visible !important;
}

/* CSS to make the right sidebar fixed and add background color */
.target-sidebar {
    padding: 15px; /* Add padding for spacing and aesthetics */
    border: 1px dashed #ececec34; /* Add a border for separation */
}

.target-stickbar {
    position: sticky;
    top: 65px; /* Adjust the value to control the vertical position */
}

.target-lowerstickbar {
    position: sticky;
    top: 5em; /* Adjust the value to control the vertical position */
}

.target-lowerstickbar {
    position: sticky;
    top: 5em; /* Adjust the value to control the vertical position */
}

.action-tray-parent  {
  position: sticky;
  top: 0;
}

.action-tray-offcanvas  {
  overflow-y: scroll;
}
/* app/assets/stylesheets/site.css */
/* line 3, app/assets/stylesheets/site.css.scss */
.alert-notice {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}

/* line 9, app/assets/stylesheets/site.css.scss */
.alert-alert {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}

/* line 15, app/assets/stylesheets/site.css.scss */
.placeholder {
  cursor: auto;
}

/* line 19, app/assets/stylesheets/site.css.scss */
.footer {
  position: scroll;
  bottom: 0;
  z-index: 0;
  margin-top: 0.5rem;
}

/* line 26, app/assets/stylesheets/site.css.scss */
.full-height {
  min-height: 83.5vh;
}

/* line 30, app/assets/stylesheets/site.css.scss */
.background-colour {
  position: relative;
  background-color: rgba(0, 0, 0, 0.8);
}

/* line 35, app/assets/stylesheets/site.css.scss */
.background-full {
  background-size: cover;
}

/* line 39, app/assets/stylesheets/site.css.scss */
#intro {
  background-image: url(/assets/folder/website-reports-desk-screens-46ad79a336bab8bf82d60a5bc452de7eb85373b1d925adc523c61d6f869350a6.webp);
  height: 100vh;
}

/* Custom Styling for Vertical Dots Navigation */
/* line 45, app/assets/stylesheets/site.css.scss */
#vertical-dots-nav {
  position: fixed;
  top: 50%;
  right: 1px;
  padding: 1px;
  transform: translateY(-50%);
  z-index: 3;
}

/* line 54, app/assets/stylesheets/site.css.scss */
#vertical-dots-nav .nav-link {
  display: block;
  font-size: 12px;
  text-align: center;
  color: #555;
  /* Adjust the color as needed */
  background-color: rgba(139, 139, 139, 0.7);
}

/* line 62, app/assets/stylesheets/site.css.scss */
#vertical-dots-nav .nav-link.active {
  color: #004fa3;
  /* Highlight color for the active dot */
}

/* line 66, app/assets/stylesheets/site.css.scss */
.container-fluid-fullsize {
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
  margin-top: 50px;
}

/* line 74, app/assets/stylesheets/site.css.scss */
.hero-section {
  height: 100vh;
  /* Full height of viewport */
  width: 100vw;
  /* Full height of viewport */
  position: relative;
  /* Positioning context for overlay and text */
  color: #fff;
  /* Text color */
  background-image: url(/assets/folder/business-report-background-garbled-8e3779603dc2f60a4372773b98f76a83d312e47321eb67f2f4c6b6273960028f.webp);
  background-size: cover;
  background-position: center;
}

/* line 84, app/assets/stylesheets/site.css.scss */
.hero-overlay {
  position: absolute;
  /* Overlay position */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

/* line 93, app/assets/stylesheets/site.css.scss */
.hero-content {
  position: absolute;
  /* Position text elements */
  top: 40%;
  /* Center vertically */
  left: 50%;
  /* Center horizontally */
  width: 100%;
  transform: translate(-50%, -50%);
  /* Center the content */
  background-color: rgba(0, 0, 0, 0);
  /* 65% black overlay */
}

/* line 102, app/assets/stylesheets/site.css.scss */
.hero-provider {
  background-image: url(/assets/general/office-modern-building-1920-9f813ac06ad74346d8851441e616119f5a64533b6ce47e566f626b59a17def43.jpg);
  /* Replace 'background-image.jpg' with your image path */
  background-size: cover;
  background-position: center;
  height: 80vh;
}

/* line 109, app/assets/stylesheets/site.css.scss */
.elevate-section {
  width: 20%;
  position: fixed;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

/* line 120, app/assets/stylesheets/site.css.scss */
.elevate-section:hover {
  transform: scale(1.1) translateY(-50%);
}

@media (max-width: 768px) {
  /* line 125, app/assets/stylesheets/site.css.scss */
  .elevate-section {
    display: none;
    /* Hide on small devices */
  }
}

/* line 130, app/assets/stylesheets/site.css.scss */
.perspective-section {
  margin: -10px 0px;
}

/* line 134, app/assets/stylesheets/site.css.scss */
.card-container {
  position: relative;
  top: 50%;
  left: 0%;
  transform: translate(0%, -75%);
  z-index: 1;
  /* Ensure the card appears above other content */
}

/* line 143, app/assets/stylesheets/site.css.scss */
.counter {
  text-align: center;
}

/* line 148, app/assets/stylesheets/site.css.scss */
.counter-count {
  font-size: 50px;
  font-weight: bold;
  position: relative;
  color: #d8d8d8;
  text-align: center;
  display: inline-block;
  text-shadow: 3px 3px 5px #838383;
}

/* Background Picture Class */
/* line 162, app/assets/stylesheets/site.css.scss */
.bg-picture-1 {
  background-image: url(/assets/general/coffee-table-business-meeting-1280-dd78ed15ba760e0c18d2d6910c8ff73aa8eb6961b62660562bf4248aa8a29f80.jpg);
  background-size: cover;
  background-position: center;
}

/* line 168, app/assets/stylesheets/site.css.scss */
.bg-picture-2 {
  /* Uncomment and replace 'url(/image-link.jpg)' with your actual picture link */
  /*   background-color: blue; */
  /* For now, making it blue */
  background-image: url(/assets/general/business-meeting-1280-6d4c826d9ca28f7db73f3f4d3f8438e61ad0a94bb1c35f42c8d58df90d12e09c.jpg);
  background-size: cover;
  background-position: center;
}

/* line 176, app/assets/stylesheets/site.css.scss */
.bg-picture-3 {
  /* Uncomment and replace 'url(/image-link.jpg)' with your actual picture link */
  /*   background-color: blue; */
  /* For now, making it blue */
  background-image: url(/assets/general/imac-with-calendar-1280-252de665e5eb1dbcbbbe3f57bcca60460a9c6e0efbc9704e3d99429388d3694e.jpg);
  background-size: cover;
  background-position: center;
}

/* line 184, app/assets/stylesheets/site.css.scss */
.bg-picture-4 {
  /* Uncomment and replace 'url(/image-link.jpg)' with your actual picture link */
  /*   background-color: blue; */
  /* For now, making it blue */
  background-image: url(/assets/general/dandelion-vase-fs8-df6ef3f6dbf1eaf13b599a6b4723d06516647b54abd3b49c5c8a181bfe732ea6.png);
  background-size: cover;
  background-position: center;
}

/* line 192, app/assets/stylesheets/site.css.scss */
.bg-picture-5 {
  /* Uncomment and replace 'url(/image-link.jpg)' with your actual picture link */
  /*   background-color: blue; */
  /* For now, making it blue */
  background-image: url(/folder/business-roundtable-presentation.webp);
  background-size: cover;
  background-position: center;
}

/* Background Overlay Class */
/* line 201, app/assets/stylesheets/site.css.scss */
.bg-overlay {
  position: relative;
}

/* line 205, app/assets/stylesheets/site.css.scss */
.bg-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  /* Black overlay with 0.9 transparency */
}

/* Content within the div */
/* line 217, app/assets/stylesheets/site.css.scss */
.bg-content {
  position: relative;
  /* Ensure content stays on top of the overlay */
  z-index: 2;
  /* Ensure content is above the overlay */
}

/* line 222, app/assets/stylesheets/site.css.scss */
.pricing-bg {
  background-image: url(/assets/folder/nine-panes-business-owners-e83be6bc8c5acdae04016a96ea3678125efed4cb6682a77cf184c02a2070e5ee.webp);
  background-size: cover;
  background-position: center;
}

/* line 228, app/assets/stylesheets/site.css.scss */
.pillars-bg {
  background-image: url(/assets/folder/website-office-people-meeting-d4c72a009f38a679d95ce6298e8487041e0ec7a61878237e6ecb73059aeb93e1.webp);
  background-size: cover;
}

/* line 233, app/assets/stylesheets/site.css.scss */
.workshop-website-image1 {
  background-image: url(/assets/folder/website-business1-f27d3c7627ca1b3deda8504633d1c03a50febc62573993da2264ecfcd253d16a.webp);
}

/* line 237, app/assets/stylesheets/site.css.scss */
.img-full-height {
  width: 100%;
  /* Ensures the image takes the full width of its container */
  height: 100%;
  /* Ensures the image takes the full height of its container */
  object-fit: cover;
  /* Ensures the image covers the container without distortion */
  display: block;
  /* Prevents inline spacing issues */
  overflow: hidden;
  /* Ensures any overflow content is hidden */
}

/* line 245, app/assets/stylesheets/site.css.scss */
.free-label {
  position: absolute;
  top: 2em;
  right: -2em;
  transform: translateX(1%) translateY(1%) rotate(35deg);
  color: white;
  padding: 7px 50px;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

/* line 259, app/assets/stylesheets/site.css.scss */
.pricing-ribbon {
  --f: 0.5em;
  /* control the folded part */
  position: absolute;
  top: 0;
  right: 0;
  line-height: 1.25;
  padding: 0.5em;
  padding-inline: 3lh;
  padding-bottom: var(--f);
  border-image: conic-gradient(#0008 0 0) 51%/var(--f);
  clip-path: polygon(100% calc(100% - var(--f)), 100% 100%, calc(100% - var(--f)) calc(100% - var(--f)), var(--f) calc(100% - var(--f)), 0 100%, 0 calc(100% - var(--f)), 999px calc(100% - var(--f) - 999px), calc(100% - 999px) calc(100% - var(--f) - 999px));
  transform: translate(calc((1 - cos(45deg))*100%), -100%) rotate(45deg);
  transform-origin: 0% 100%;
}

/* line 277, app/assets/stylesheets/site.css.scss */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* line 284, app/assets/stylesheets/site.css.scss */
.promote-pricing {
  top: -1em;
}

/* line 288, app/assets/stylesheets/site.css.scss */
.text-impact-shadow {
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}

/* line 292, app/assets/stylesheets/site.css.scss */
.image-overlay-container {
  position: relative;
  display: inline-block;
  /* Allows container to wrap around image size */
  text-align: center;
  /* Center the text horizontally */
}

/* line 298, app/assets/stylesheets/site.css.scss */
.background-image {
  width: 100%;
  /* Adjust image size as needed */
  height: auto;
}

/* line 303, app/assets/stylesheets/site.css.scss */
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-weight: bold;
  transform: translate(-50%, -50%);
  /* Centers the text */
  color: #e9e9e9;
  /* Text color, adjust as needed */
  background-color: rgba(0, 0, 0, 0.2);
  /* Optional: semi-transparent background */
  padding: 10px;
  /* Add padding around the text */
  border-radius: 5px;
  /* Optional: rounded corners */
  font-family: 'Helvetica', serif;
  /* Elegant font choice */
  text-transform: uppercase;
  /* Make text uppercase */
}
.topbar {
    position: scroll;
    width: 80%;
}
.widget-size-report {
  /* a report sized to take up a widget space on the dashboard */
  max-width: 600px; /* Set maximum width */
  max-height: 600px; /* Set maximum height */
  width: 100%; /* Ensure canvas fills its container */
  height: auto; /* Allow canvas to scale proportionally */
}
