/* HabitWins Layout CSS - Layout and Responsive Breakpoints */

/* Body styles moved to base.css - SINGLE SOURCE OF TRUTH */

/* .container moved to base.css - SINGLE SOURCE OF TRUTH */

/* Dashboard layout moved to dashboard.css - SINGLE SOURCE OF TRUTH */

/* Mobile Container Fix */
/* Dashboard mobile layout moved to dashboard.css - SINGLE SOURCE OF TRUTH */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    /* Dashboard styles moved to dashboard.css to avoid conflicts */
}

@media (max-width: 600px) {
    .container {
        padding: 0 8px;
    }
    /* dashboard-main gap moved to dashboard.css - SINGLE SOURCE OF TRUTH */
}

@media (max-width: 480px) {
    .container {
        padding: 0 5px;
    }
    /* dashboard-main gap moved to dashboard.css - SINGLE SOURCE OF TRUTH */
}

/* Ultra-narrow mobile optimization */
@media (max-width: 400px) {
    .container {
        padding: 0 3px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 2px;
    }
}

/* Flexbox utilities */
.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

/* Gap utilities */
.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 15px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

/* Margin utilities */
.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

/* Padding utilities */
.p-10 {
    padding: 10px;
}

.p-15 {
    padding: 15px;
}

.p-20 {
    padding: 20px;
}

.p-30 {
    padding: 30px;
}

/* Text alignment */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Width utilities */
.w-100 {
    width: 100%;
}

.w-50 {
    width: 50%;
}

.w-25 {
    width: 25%;
}

/* Height utilities */
.h-100 {
    height: 100%;
}

/* Position utilities */
.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}

/* Z-index utilities */
.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.z-index-10 {
    z-index: 10;
}

.z-index-100 {
    z-index: 100;
}

.z-index-1000 {
    z-index: 1000;
}

/* Overflow utilities */
.overflow-hidden {
    overflow: hidden;
}

.overflow-auto {
    overflow: auto;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.overflow-y-auto {
    overflow-y: auto;
}