body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e9ecef;
    color: #333;
}

header {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    margin: 10px 0 0;
    font-size: 1.1rem;
}

main {
    padding: 40px;
    max-width: 1200px;
    margin: auto;
}

#script-list {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

#script-list:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 15px 0;
    font-size: 1.1rem;
    border-radius: 12px;
}

#scriptUl li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.download-btn {
    background: #5cb85c;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.download-btn:hover {
    background: #4cae4c;
}


footer {
    text-align: center;
    padding: 20px;
    background: #2c3e50;
    color: #ecf0f1;
    margin-top: 40px;
}

footer p {
    margin: 10px 0;
    font-size: 1rem;
}

footer a {
    color: #1abc9c;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #16a085;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #1abc9c;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.back-btn i {
    margin-right: 10px;
}

.back-btn:hover {
    color: #16a085;
}

#search {
    margin: 10px 0 20px 0;
    text-align: center;
}

#searchInput {
    padding: 10px;
    width: 100%;
    max-width: 400px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
