/*CSS for Create New Entry Page.*/
/************************/

/*************************************************************/
/****************Create button - Modal***********************/
/***********************************************************/

.path-createnew h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1e3a8a;
}

/* Card */
.path-createnew .product-card {
  position: relative;
  background: #fff;
  border: 3px solid #e2e8f0;
  border-radius: 18px;
  padding: 28px 20px 26px;
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 260px;
  margin-bottom: 25px;
  text-align: center;
}

/* Hide radio */
.path-createnew .product-card input {
  display: none;
}

/* Title */
.path-createnew .product-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

/* Description */
.path-createnew .product-card p {
  font-size: 14px;
  color: #475569;
  margin-top: 10px;
  line-height: 1.5;
  text-align: left;
}

/* Checkmark */
.path-createnew .checkmark {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 36px;
  height: 36px;
  background: #2563eb;
  color: #fff;
  border-radius: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 6px 14px rgba(37,99,235,0.35);
}

/* Hover */
.path-createnew .product-card:hover {
  border-color: #93c5fd;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* Selected */
.path-createnew .product-card input:checked ~ .checkmark {
  display: block;
  text-align: center;
  line-height: 36px;
}

.path-createnew .product-card:has(input:checked) {
  border-color: #2563eb;
  box-shadow: 0 14px 28px rgba(37,99,235,0.18);
}

.path-createnew .product-card input:checked ~ .icon,
.path-createnew .product-card input:checked ~ h3 {
  color: #2563eb;
}

.path-createnew .product-card input:checked ~ p {
  color: #1e40af;
}

.path-createnew .createbtner {
    text-align: center;
}

/* Button */
.path-createnew .btn-success {
  margin-top: 40px;
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 14px 38px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(37,99,235,0.3);
  transition: all 0.2s ease;
}

.path-createnew .btn-success:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

/****************************************/
/******** Mobile Design ****************/
/**************************************/

@media (min-width: 992px) {

    .path-createnew h1 {
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 40px;
        color: #1e3a8a;
        text-align: center;
        }

}


@media (max-width: 991px) {

    .path-createnew .col-sm-9 {
        width:100%;
    }

}

@media (max-width: 767px) {

    .path-createnew .product-card {
        position: relative;
        background: #fff;
        border: 3px solid #e2e8f0;
        border-radius: 18px;
        padding: 28px 20px 26px;
        cursor: pointer;
        transition: all 0.25s ease;
        min-height: 260px;
        margin-bottom: 25px;
        text-align: center;
        width: 80%;
        margin-left: 10%;
    }

}