@charset "utf-8";

/* [v1.0.0] WebLease Request Skin Style */

/* --- 목록 (Request List) --- */
.wl-req-wrap {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
}
.wl-req-head {
  background: #f8f9fa;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 20px;
  display: flex;
  font-weight: 700;
  color: #555;
  font-size: 13px;
}
.wl-req-row {
  display: flex;
  padding: 15px 20px;
  border-bottom: 1px solid #f1f1f1;
  align-items: center;
  transition: 0.2s;
}
.wl-req-row:hover {
  background: #fdfdfd;
}
.wl-req-row:last-child {
  border-bottom: none;
}

/* 컬럼 너비 */
.col-num {
  width: 60px;
  text-align: center;
  color: #999;
  font-size: 12px;
}
.col-subj {
  flex: 1;
  padding: 0 20px;
  font-weight: 600;
  font-size: 15px;
  color: #333;
}
.col-subj a {
  color: #333;
  text-decoration: none;
}
.col-subj a:hover {
  color: #dc3545;
}
.col-info {
  width: 120px;
  text-align: right;
  font-size: 12px;
  color: #999;
}
.col-stat {
  width: 100px;
  text-align: center;
}

/* 상태 뱃지 */
.wl-stat-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  min-width: 60px;
  text-align: center;
}
.st-wait {
  background: #eee;
  color: #777;
}
.st-done {
  background: #e6f4ea;
  color: #1e7e34;
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .wl-req-head {
    display: none;
  }
  .wl-req-row {
    flex-wrap: wrap;
    padding: 15px;
  }
  .col-num {
    display: none;
  }
  .col-subj {
    width: 100%;
    padding: 0 0 10px;
    font-size: 16px;
  }
  .col-info {
    width: auto;
    text-align: left;
  }
  .col-stat {
    margin-left: auto;
  }
}

/* --- 뷰 (Detail View) --- */
.wl-view-box {
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  padding: 30px;
  margin-bottom: 20px;
}
.wl-v-head {
  border-bottom: 2px solid #333;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.wl-v-cat {
  color: #dc3545;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 5px;
  display: block;
}
.wl-v-title {
  font-size: 24px;
  font-weight: 800;
  color: #111;
  line-height: 1.3;
}
.wl-v-meta {
  margin-top: 15px;
  font-size: 13px;
  color: #888;
  display: flex;
  gap: 20px;
}

.wl-v-con {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  min-height: 150px;
}
.wl-v-btn {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

/* --- 쓰기 (Write) --- */
.wl-w-wrap {
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  padding: 40px;
}
.wl-w-tit {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #333;
}
.wl-inp-row {
  margin-bottom: 20px;
}
.wl-inp-label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}
.wl-inp {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}
.wl-inp:focus {
  border-color: #dc3545;
  outline: none;
}
