/* static/styles.css */
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --background-color: #FFFCF2; /* Background color for the entire website, including individual sections */
  --primary-color: #FF7B5C; /* Default color used for the majority of the text content across the entire website */
  --accent-color: #A9B0F7; /* Color for headings, subheadings and title throughout the website */
  --neutral-color: #6B7280; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --secondary-color: #8EFFDA; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

.app-background{
  background-color: var(--background-color);
}

.app-primary{
  background-color: var(--primary-color);
}

.app-neutral{
  background-color: var(--neutral-color);
}

.app-accent{
  background-color: var(--accent-color);
}

/*buttons*/
.app-secondary{
  background-color: var(--secondary-color);
}

.app-contrast{
  background-color: var(--contrast-color);
}

.app-padding{
  margin-right: 2.5%;
  margin-left: 1%;
}

body {
  background-color: var(--background-color); /* Tailwind's gray-100 */
  color: #1f2937;            /* Tailwind's gray-800 */
  font-family: 'Inter', sans-serif;
}

#sidebarMenu{
  width:100%;
}

.sidebar-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 1000ms;
}

.tool-button {
  background-color: #ffffff;
  border: 2px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  font-weight: bold;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tool-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  border-color: #60a5fa;
  background-color: #f0f9ff;
}
