/* static/css/tests/share.css */

.share-buttons-container{
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.share-buttons span{
    font-size: 14px;
}

.share-buttons a{
    color: unset;
}

/* Individual Buttons */

.btn-share {
    appearance: none;
    background-color: #FAFBFC;
    border: 1px solid rgb(92 147 201 / 27%);
    border-radius: 6px;
    box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
    box-sizing: border-box;
    color: #24292E;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 40px;
    height: 40px;
    line-height: 20px;
    list-style: none;
    padding: 6px 16px;
    position: relative;
    text-decoration: none;
    transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: break-word;
}

.btn-share:hover {
  background-color: #F3F4F6;
  color: #24292E;
  text-decoration: none;
  transition-duration: 0.1s;
}

.btn-share:disabled {
  background-color: #FAFBFC;
  border-color: rgba(27, 31, 35, 0.15);
  color: #959DA5;
  cursor: default;
}

.btn-share:active {
  background-color: #EDEFF2;
  box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
  transition: none 0s;
}

.btn-share:focus {
  outline: 1px transparent;
}

.btn-share:before {
  display: none;
}

.btn-share:-webkit-details-marker {
  display: none;
}

/* Icons */
.btn-share i {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {

  .share-buttons-container{
        flex-direction: column;
  }
    
    .share-buttons {
        justify-content: center;
    }
}