/* ===============================
   FRAMEWORK BASE STYLES (k2sgreen)
   =============================== */

/* === GRID SYSTEM === */
.ant-row {
  display: flex;
  flex-flow: row wrap;
    min-width:0;
}
.ant-col {
  position: relative;
  box-sizing: border-box;
  min-height: 1px;
  padding-left: 8px;
  padding-right: 8px;
}


/* Responsive columns */
.ant-col-24 { flex: 0 0 100%; max-width: 100%; }
.ant-col-12 { flex: 0 0 50%; max-width: 50%; }
.ant-col-8  { flex: 0 0 33.3333%; max-width: 33.3333%; }
.ant-col-6  { flex: 0 0 25%; max-width: 25%; }

.g-bb-white.containerPadding {
  max-width: 400px;  /* or match your screenshot’s exact size */
  margin: 0;    /* center it */
}

/* Media queries for responsive grid */
@media (min-width: 576px) {
  .ant-col-sm-24 { flex: 0 0 100%; max-width: 100%; }
  .ant-col-sm-12 { flex: 1 1 25%; max-width: 50%; }
}
@media (min-width: 768px) {
    .ant-col-md-24 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
    @media (min-width: 768px)
    {
        .ant-col-md-12 {
            
            flex: 0 0 50%;
            max-width: 100%;
        }
  
}
@media (min-width: 992px) {
  .ant-col-lg-24 { flex: 0 0 100%; max-width: 100%; }
  .ant-col-lg-12 { flex: 0 0 50%; max-width: 50%; }
}
@media (min-width: 1200px) {
  .ant-col-xl-24 { flex: 0 0 100%; max-width: 100%; }
  .ant-col-xl-12 { flex: 0 0 50%; max-width: 50%; }
}

/* === BUTTONS === */
.ant-btn {
  font-family: inherit;
  border: 1px solid #d9d9d9;
  padding: 0.5rem 1rem;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ant-btn:hover {
  border-color: #40a9ff;
  color: #40a9ff;
}
.ant-btn-primary {
  background: #1677ff;
  border-color: #1677ff;
  color: #fff;
}
.ant-btn-primary:hover {
  background: #4096ff;
  border-color: #4096ff;
}

/* === FORM ELEMENTS === */
.ant-input {
  display: inline-block;
  width: 100%;
  min-width: 0;
  padding: 4px 11px;
  font-size: 14px;
  line-height: 1.5715;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  transition: all 0.3s;
}
.ant-input:focus {
  border-color: #40a9ff;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

/* Form items */
.ant-form-item {
  margin-bottom: 1rem;
}
.ant-form-item-label {
  padding-bottom: 4px;
  font-weight: 500;
}

/* === LAYOUT === */
.ant-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.ant-layout-header {
  height: 64px;
  line-height: 64px;
  background: #001529;
  color: #fff;
  padding: 0 24px;
}
.ant-layout-content {
  flex: 1;
  padding: 24px;
  background: #fff;
}
.ant-layout-footer {
  padding: 24px;
  text-align: center;
  background: #f0f2f5;
}

/* === TYPOGRAPHY === */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
    'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
    'Noto Color Emoji';
  font-size: 14px;
  line-height: 1.5715;
  color: rgba(0, 0, 0, 0.85);
  background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5rem;
  font-weight: 600;
}
p {
  margin: 0 0 1rem;
}

/* === UTILITIES === */
.text-center { text-align: center !important; }
.text-right  { text-align: right !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 1rem !important; }

        