.admbn {
  color: #9f125d;
}
.impt:before{
content: ' *'; 
color: red;
font-weight: bold; 
}
.imp:after{
content: ' *'; 
color: red;
font-weight: bold; 
}
.edit {
  display: inline;
}
/* 이거는 원본이랑 충돌 날 수도 있음 */
.news-pr-list{
width:100%;
}

.dropdown-content{
  margin-top : 3%;
}

.del,
.edit {
  font-size: 80%;
  color: #9f125d;
  border: 1px solid;
  padding: 1.3%;
  border-radius: 10px 10px 10px 10px/ 10px 10px 10px 10px;
}
.edit:hover,
.del:hover {
  background-color: #eb7eb8;
  cursor: pointer;
}

.plus-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #9f125d;
  color: white;
  font-size: 24px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-family: 'Pretendard-SemiBold', sans-serif;
}

.plus-button:hover {
  background-color: #7f0e4a;
}

.admShow {
    display: block;
    max-height: 3.6em;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.admShow::after {
    content: '...';
    position: absolute;
    bottom: 0;
    right: 0;
    padding-left: 20px;
    background: white;
}

.admShow.expanded {
    max-height: none;
    overflow: visible;
}

.admShow.expanded::after {
    content: '';
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-animation: fadeIn 0.5s;
  animation: fadeIn 0.5s;
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.upload-form {
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-top: 10px;
  font-weight: bold;
}

.form-input,
.form-textarea {
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Malgun Gothic', '맑은 고딕', AppleGothic, Dotum, '돋움', sans-serif;
}

.form-textarea {
  resize: vertical;
}

.form-submit {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  margin-top: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-family: 'Malgun Gothic', '맑은 고딕', AppleGothic, Dotum, '돋움', sans-serif;
}

.form-submit:hover {
  background-color: #45a049;
}

@keyframes slideIn {
  from {
    transform: translateY(-300px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes slideIn {
  from {
    transform: translateY(-300px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
