body {
    background-color: #f8f8f5;
}

a:hover {
    color: #2d9aed;
}

a {
    text-decoration: none;
}

.linkButton {
   background-color: #de4747;
   padding: 4px;
   border-radius: 12px;
   line-height: 2;
}

.linkButton a {
   color: white;
}

.linkButton:hover {
   background-color: #2d9aed;
}

.mainMenu a {
    display: inline-flex;      /* наместо inline-block */
    justify-content: center;   /* хоризонтално центрирање */
    align-items: center;       /* вертикално центрирање */
    text-decoration: none;
    background-color: #de4747;
    color: white;
    padding: 4px 12px 6px 12px;         /* можеш симетрично да го направиш */
    font-weight: bold;
    border-radius: 8px;
}

.mainMenu a:hover {
    color: white;
    background-color: #2d9aed;
}

.details-table {
    flex: 1;
    width: 100%;
    max-width: 600px;
    margin-top: 30px;
    border-collapse: collapse;
    overflow: hidden;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.details-table th,
.details-table td {
  text-align: left;
  padding: 12px 20px;
}

.details-table th {
  font-weight: bold;
  width: 30%; 
}

.details-table td {
  width: 60%;
}

/* Responsive за мобилен */
@media (max-width: 600px) {
  .details-table th,
  .details-table td {
    display: block;
    width: 100%;
  }

  .details-table th {
    background-color: transparent;
    font-weight: bold;
    padding-top: 12px;
  }

  .details-table td {
    padding-bottom: 12px;
    border-bottom: 1px solid #ccc;
  }

  .details-table tr {
    margin-bottom: 10px;
    display: block;
    border-bottom: 2px solid #f0eded;
  }

  .book-cover {
      flex: 1 1 100%;
      display: flex;
      justify-content: center;
      margin-top: -24px;  
  }
 
}

.book-details {
  gap: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap; 
}

.book-cover img {
    margin-top: 36px;
    max-width: 270px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.55);
}



/* Icons */
.custom-icon svg {
    width: 1.4em;      /* Ја следи големината на текстот */
    height: 1.4em;
    vertical-align: middle;
    display: inline-block;
    fill: currentColor; /* За да ја прима бојата на околниот текст */
    color: inherit;
}

/* Ако иконата е линк, додај малку ефект */
.custom-icon a:hover svg {
    opacity: 0.8;
    transform: scale(1.2);
    transition: all 0.2s ease;
}

.custom-icon a { 
    color: inherit;
}



/* Verification date */
.timestamp {
    display: inline-block; 
    font-family: monospace;
    font-weight: 555;
    border: 2px dashed #333;
    border-radius: 8px;
    padding: 6px;
    background-color: rgba(181, 152, 141, 0.2);
    margin-top: 4px;
    margin-bottom: 4px;
}


h1, h2, h3, h4 {
    text-align: left;
}
