

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


.list-row {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}

.list-row--compact {
  padding: 8px 0;
}

.list-grid-item {
  padding: 8px;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.list-row__title {
  font-weight: 600;
}

.list-row__desc {
  color: rgba(0,0,0,0.45);
}

/* Shared resizable column handle used by react-resizable */
.react-resizable {
  position: relative;
  background-clip: padding-box;
}

.react-resizable-handle {
  position: absolute;
  right: -5px;
  bottom: 0;
  z-index: 1;
  width: 10px;
  height: 100%;
  cursor: col-resize;
}

.card-editor {
  border: 1px solid #e9e9e9;
  border-radius: 5px;
  height: 300px;
  overflow-y: scroll;
  scrollbar-width: thin;
}

/* Helper shown below the editor (moved out of the scrollable region to avoid overlap) */
.editor-help {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(0,0,0,0.65);
  display: block;
}
.login-form {
    max-width: 100%;
}

.login-form-forgot {
    float: right;
    color: rgba(0,0,0,0.6);
}

.login-form-button {
    width: 100%;
    padding: 10px 16px;
    border-radius: 6px;
}

.center-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 24px;
    background: linear-gradient(135deg, #f6f8fa 0%, #e9eef7 100%);
}

.login-card {
    width: 420px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
    padding: 24px;
    background: #fff;
    text-align: left;
}

.login-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.login-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.login-subtitle {
    color: #6b7280;
    font-size: 13px;
    margin-top: 4px;
}

.site-form-item-icon {
    color: #1890ff;
}

.login-form .ant-form-item {
    margin-bottom: 12px;
}

@media (max-width: 480px) {
    .login-card { width: 100%; padding: 20px; }
    .center-screen { padding: 16px; }
}
.logo {
    float: left;
    width: 120px;
    height: 31px;
    margin: 16px 24px 16px 0;
    background: rgba(255, 255, 255, 0.3);
}


.hide {
    display: none;
}

.header {
    display: flex;
    justify-content: space-between;
    /* background-color:aqua; */
    padding-left: 0px;  /* overwrite antd header padding 50px */
    padding-right: 0px;
}

img:hover {
    cursor: pointer;
}
