h1{
    display: block;
    background-color: #592E90;
    padding: 8px;
    color: #fff;
    border-radius: 8px;
    font-size: 20px;
}
.container {
    width: 90%;
    margin: auto;
    background: #fff;
    margin-top: 19px;
    border-radius: 8px;
    padding: 8px;
}
.container #allmatch {
    width: 100%;
    margin-top: 3px;
}

.social-share {
    display: flex;
    gap: 4px;
    margin-bottom: 7px;
    padding: 7px;
    border-radius: 6px;
    margin-top: 15px;
    justify-content: center;
}

.social-button {
    display: flex;
    align-items: center;
    padding: 6px 97px;
    background-color: #8c52ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    justify-content: center;
}

.social-button:hover {
    background-color: #714cbd;
}

.social-button i {
    margin-right: 8px;
}

/* تخصيص الأزرار حسب الشبكة الاجتماعية */
.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #00acee;
}

.whatsapp {
    background-color: #25D366;
}

.telegram {
    background-color: #0088cc;
}

@media screen and (max-width: 1120px){
    .social-button {
        padding: 6px 60px;
    }
}
@media screen and (max-width: 800px){
    .social-button {
        padding: 6px 20px;
    }
}
@media screen and (max-width: 450px){
    .social-button {
        padding: 6px 16px;
    }
    #headercard h1{
        font-size: 16px;
    }
    div#articleinfo {
        display: grid;
        font-size: 12px;
        gap:0;
    }
}
  .server-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 5px;
}
  .server-buttons button {
    padding: 10px;
    background-color: #8c52ff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  .server-buttons button:hover {
    background-color: #615285;
  }
  #date{
    color:#8c52ff;
  }

/* responsive code's */
@media screen and (max-width: 600px){
    .container{
        width: 100%;
    }
    h1{
        font-size: 14px;
    }
}