body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans";
    background-color: #1e1e1e;
    color: #fff;
}

.container {
    width: 80%;
    margin: 50px auto;
}

h1 {
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #444;
}

th {
    background-color: #333;
    color: #fff;
}

tr:hover {
    background-color: #444;
}

input[type="text"] {
    padding: 10px;
    width: 100%;
    margin-top: 10px;
    box-sizing: border-box;
    background-color: #333;
    color: #fff;
    border: none;
}

.website-preview {
    background-color: #333;
    cursor: pointer;
}

.website-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.website-info img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.website-details {
    flex-grow: 1;
}

.website-name {
    color: #ffffff;
    margin: 0;
}

.website-url {
    color: #9e9e9e;
    margin: 0;
    font-size: 0.9em;
}

a {
    text-decoration: none;
}
