/* Display */
.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

/* Flex direction */
.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

/* Justify content (main axis alignment) */
.justify-content-start {
  justify-content: flex-start;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-evenly {
  justify-content: space-evenly;
}

/* Align items (cross axis alignment) */
.align-items-start {
  align-items: flex-start;
}

.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-baseline {
  align-items: baseline;
}

.align-items-stretch {
  align-items: stretch;
}

/* Align self (specific item alignment) */
.align-self-start {
  align-self: flex-start;
}

.align-self-center {
  align-self: center;
}

.align-self-end {
  align-self: flex-end;
}

.align-self-auto {
  align-self: auto;
}

/* Flex wrap */
.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

/* Grid display */
.d-grid {
  display: grid;
}

.d-inline-grid {
  display: inline-grid;
}

/* Grid template columns */
.grid-template-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-template-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-template-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-template-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-template-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-template-6 {
  grid-template-columns: repeat(6, 1fr);
}

/* Grid template rows */
.grid-rows-1 {
  grid-template-rows: repeat(1, 1fr);
}

.grid-rows-2 {
  grid-template-rows: repeat(2, 1fr);
}

.grid-rows-3 {
  grid-template-rows: repeat(3, 1fr);
}

.grid-rows-4 {
  grid-template-rows: repeat(4, 1fr);
}

/* Grid gap */
.gap-1 {
  grid-gap: 0.25rem;
}

.gap-2 {
  grid-gap: 0.5rem;
}

.gap-3 {
  grid-gap: 1rem;
}

.gap-4 {
  grid-gap: 1.5rem;
}

.gap-5 {
  grid-gap: 2rem;
}

/* Grid template areas */
.grid-areas {
  grid-template-areas: "header header header"
    "sidebar content content"
    "footer footer footer";
}

/* Grid auto-flow and sizing */
.grid-auto-cols {
  grid-auto-columns: 1fr;
}

.grid-auto-rows {
  grid-auto-rows: 1fr;
}

.grid-auto-flow-row {
  grid-auto-flow: row;
}

.grid-auto-flow-column {
  grid-auto-flow: column;
}

/* Grid column span */
.col-span-1 {
  grid-column: span 1;
}

.col-span-2 {
  grid-column: span 2;
}

.col-span-3 {
  grid-column: span 3;
}

.col-span-4 {
  grid-column: span 4;
}

.col-span-5 {
  grid-column: span 5;
}

.col-span-6 {
  grid-column: span 6;
}

/* Grid row span */
.row-span-1 {
  grid-row: span 1;
}

.row-span-2 {
  grid-row: span 2;
}

.row-span-3 {
  grid-row: span 3;
}

.row-span-4 {
  grid-row: span 4;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-25 {
  margin-top: 25px;
}
.w-100{
  width: 100%!important;
} 