@font-face {

    font-family: IranSans;

    src: url("../assets/fonts/IRANSans-web.woff");

}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    font-family: IranSans;

}




body {

    min-height: 100vh;

    background: #0d110d;

    display: flex;

    justify-content: center;

    align-items: center;

    color: white;

}




.box {

    width: 450px;

    background: #171f17;

    padding: 30px;

    border-radius: 25px;

    border: 1px solid #10B98155;

}




h1 {

    color: #10B981;

    margin-bottom: 15px;

}




p {

    color: #94A3B8;

    margin-bottom: 20px;

}





#chat {


    height: 300px;

    overflow-y: auto;

    padding: 15px;

    margin-bottom: 20px;

    background: #0d110d;

    border-radius: 15px;

    border: 1px solid #10B98155;


}




.message {


    padding: 12px;

    border-radius: 12px;

    margin-bottom: 10px;

    max-width: 80%;


}




.message.user {


    background: #10B981;

    color: white;

    margin-left: auto;


}





.message.admin {


    background: #374151;

    color: white;

    margin-right: auto;


}





textarea {


    width: 100%;

    height: 140px;

    resize: none;

    background: #0d110d;

    border: 1px solid #10B98155;

    border-radius: 15px;

    padding: 15px;

    color: white;

    outline: none;


}




.buttons {


    margin-top: 20px;

    display: flex;

    flex-direction: column;

    gap: 15px;


}




button {


    padding: 15px;

    border: none;

    border-radius: 12px;

    background: #10B981;

    color: white;

    cursor: pointer;

    font-size: 15px;


}




button:disabled {


    background: #374151;

    cursor: not-allowed;


}




#status {


    margin-top: 20px;

    color: #10B981;


}