.sun-container{

    max-width:1200px;
    margin:40px auto;
    font-family:Arial,sans-serif;

}

.sun-search-bar{

    display:flex;
    gap:10px;
    margin-bottom:30px;

}

.sun-search-bar input{

    flex:1;
    padding:14px;
    font-size:16px;
    border:1px solid #ccc;
    border-radius:6px;

}

.sun-search-bar button{

    background:#005a9c;
    color:#fff;
    border:none;
    padding:14px 24px;
    border-radius:6px;
    cursor:pointer;

}

.sun-search-bar button:hover{

    background:#00457b;

}

#sun-results{

    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(360px,1fr));
    gap:24px;

}

.sun-card{

    border:1px solid #ddd;
    border-radius:8px;
    background:#fff;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    padding:24px;

}

.sun-header{

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:20px;

}


table{

    width:100%;
    border-collapse:collapse;
    margin-bottom:20px;

}

table th{

    width:90px;
    text-align:left;
    color:#666;
    padding:6px 0;

}

table td{

    padding:6px 0;

}

.contact{

    margin-top:18px;

}

.contact h3{

    margin:0 0 8px;
    color:#444;
    font-size:16px;

}

.contact a{

    color:#005a9c;
    text-decoration:none;

}

.sun-message,
.sun-loading,
.sun-error{

    grid-column:1/-1;
    text-align:center;
    padding:50px;
    color:#666;
    font-size:18px;

}

.sun-error{

    color:#c62828;

}