*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#1d1f23;
    font-family:Arial, Helvetica, sans-serif;
    color:white;
    padding:50px;
}

.container{
    max-width:1200px;
    margin:auto;
}

h1{
    text-align:center;
    margin-bottom:30px;
    color:#fff;
}

table{
    width:100%;
    border-collapse:collapse;
    background:#2a2d33;
    border-radius:8px;
    overflow:hidden;
    table-layout:fixed;
}

th{
    background:#3b4048;
    padding:15px;
    font-size:16px;
}

td{
    padding:15px;
    border-top:1px solid #444;
    text-align:center;
    word-wrap:break-word;
}

tr:hover{
    background:#353942;
}

button{
    background:#2ea043;
    color:white;
    border:none;
    padding:8px 18px;
    border-radius:5px;
    cursor:pointer;
    font-weight:bold;
}

button:hover{
    background:#238636;
}

.footer{
    margin-top:25px;
    text-align:center;
    color:#999;
    font-size:13px;
}

/* Name */
th:nth-child(1),
td:nth-child(1){
    text-align:left;
    width:24%;
    padding-left:20px;
}

/* Details */
th:nth-child(2),
td:nth-child(2){
    text-align: left;
    white-space: normal;
    word-break: break-word;
    line-height: 1.5;
}

/* Version */
th:nth-child(3),
td:nth-child(3){
    width:10%;
}

/* Size */
th:nth-child(4),
td:nth-child(4){
    width:10%;
}

/* Released */
th:nth-child(5),
td:nth-child(5){
    width:15%;
}

/* Download */
th:nth-child(6),
td:nth-child(6){
    width:15%;
}
