         /* Contents styles */


.contents {
    margin-top: 65px;
    margin-bottom: 60px;
}


.list-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
}

.description {
  display: flex;
  width: 97%;
  margin: 1.5px;
   border-radius: 15px;
   background-color: var(--bg-color-1);
   //box-shadow: 0 4px 6px rgba(0,0,0,0.1);
   box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
   
}

.doc-img{
width: 110px;  /*distance b2wn image and description*/
//height: 90px;
}

.doc-img img{
  width: 100px;
  height: 100px;
  margin: 2px 5px;
  padding: 1px;
  border-radius: 10px;
}

.doc-name{
  width: 100%;  /*this was 300px.100% moves buttons to the end and the become responsive*/
}

.doc-name {
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-color-1);
}


.details{
   font-size: 13px;  
    font-weight: 500;
     color: var(--text-color-1);
    line-height: 17px;

  } 

  span.variable-name{
  color: var(--text-color-1);
}

span.variable-value{
  color: var(--blue-text);
}

span.variable-value2{
    color: darkorange;
    font-weight: bold;
}

/*description part*/

.info {
    padding: 20px;
    text-align: left;
    width: 100%;
}

.info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-color-1);
}

.info p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color-1);
}

/*payment part*/
.payment-section {
    width: 90%;
  margin: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;

}

.form-container {
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background:var(--navlinks-bg-color);
}

.form-container h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-color-1);
    text-align: center;
}

.price-tag {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color-1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-value {
    color: darkorange;
    font-size: 16px;
    font-weight: bold;
}

.payment-description {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-description span {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-color-1);
    text-align: center;
}

form input[type="number"],
form input[type="submit"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
}

form input[type="number"] {
    background-color: var(--bg-color-1);
     color: var(--text-color-1);
}

form input[type="submit"] {
    background-color: var(--orange);
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    font-size: 13px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

form input[type="submit"]:hover {
    background-color: darkorange;
}

/* Guest notice styling - adaptive to light and dark theme */
.guest-notice {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #dc3545;
    background: var(--warning-info-bg);
    color: var(--warning-info-text);
}

.guest-notice h4 {
    margin: 0 0 10px 0;
}

.guest-notice p {
    margin: 0;
    font-size: 14px;
}

.guest-notice a {
    color: blue;
    text-decoration: none;
    font-weight: bold;
}

.guest-notice a:hover {
    text-decoration: underline;
}

/* Logged in user notice styling */
.user-notice {
    background: var(--success-info-bg);
    
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #28a745;
}

.user-notice h4 {
    margin: 0 0 10px 0;
    color: var(--success-info-text);
}

.user-notice p {
    margin: 0;
    font-size: 14px;
    color: var(--success-info-text);
}